This commit is contained in:
Dante
2026-05-22 13:06:40 -07:00
parent b47ea35fe4
commit eb5b73a163
3 changed files with 7 additions and 5 deletions

View File

@ -3,8 +3,8 @@ const fs = require("fs");
const optickPathKey = "AURA_OPTICK_PATH";
// See https://github.com/Kode/Kha/wiki/Hashlink
const targetsHL = ["windows-hl", "linux-hl", "osx-hl", "android-hl", "ios-hl"];
const targetsCPP = ["windows", "linux", "osx"];
const targetsHL = ["windows-hl", "linux-hl", "macos-hl", "osx-hl", "android-hl", "ios-hl"];
const targetsCPP = ["windows", "linux", "macos", "osx"];
const targetsHTML5 = ["html5", "debug-html5"];
function addBackends(project) {
@ -13,7 +13,6 @@ function addBackends(project) {
const isHL = targetsHL.indexOf(Project.platform) >= 0;
if (isHL) {
project.addLibrary("hl");
project.addDefine("AURA_BACKEND_HL");
console.log("[Aura] Using HL/C backend");
}