Add missing neko target flag on cross compile

Otherwise, we end up with a cpp build instead.
For cross compiling with mingw, this breaks the build since no mingw
flag is set.
This commit is contained in:
Tobiasz Laskowski
2024-12-18 14:40:24 +00:00
committed by Josh Tynjala
parent 45505f433a
commit 988a0e836f

View File

@@ -773,6 +773,8 @@ class HXProject extends Script
}
else
{
targetFlags.set("neko", "1");
defines.set("targetType", "neko");
defines.set("neko", "1");
}