Files
Kmake/lib/kmake/Compiler.js

13 lines
440 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Compiler = void 0;
var Compiler;
(function (Compiler) {
Compiler["Default"] = "default";
Compiler["GCC"] = "gcc";
Compiler["Clang"] = "clang";
Compiler["MSVC"] = "msvc";
Compiler["MuslGcc"] = "musl-gcc";
Compiler["Custom"] = "custom";
})(Compiler = exports.Compiler || (exports.Compiler = {}));
//# sourceMappingURL=Compiler.js.map