13 lines
440 B
JavaScript
13 lines
440 B
JavaScript
"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
|