Files
LNXSDK/Kha/Tools/khamake/out/korepath.js

15 lines
493 B
JavaScript
Raw Normal View History

2025-01-22 16:18:30 +01:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.get = exports.init = void 0;
const path = require("path");
const exec_1 = require("./exec");
2026-05-21 23:40:20 -07:00
let korepath = path.join(__dirname, '..', '..', '..', 'Kore', 'Tools', (0, exec_1.sysdir)());
2025-01-22 16:18:30 +01:00
function init(options) {
2026-05-21 23:40:20 -07:00
korepath = path.join(options.kha, 'Kore', 'Tools', (0, exec_1.sysdir)());
2025-01-22 16:18:30 +01:00
}
exports.init = init;
function get() {
return korepath;
}
exports.get = get;
//# sourceMappingURL=korepath.js.map