tools: allow -hlc on windows/mac/linux without -hl
This commit is contained in:
@@ -142,7 +142,7 @@ class LinuxPlatform extends PlatformTarget
|
|||||||
{
|
{
|
||||||
targetType = "neko";
|
targetType = "neko";
|
||||||
}
|
}
|
||||||
else if (project.targetFlags.exists("hl"))
|
else if (project.targetFlags.exists("hl") || targetFlags.exists("hlc"))
|
||||||
{
|
{
|
||||||
targetType = "hl";
|
targetType = "hl";
|
||||||
is64 = true;
|
is64 = true;
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ class MacPlatform extends PlatformTarget
|
|||||||
{
|
{
|
||||||
targetType = "neko";
|
targetType = "neko";
|
||||||
}
|
}
|
||||||
else if (project.targetFlags.exists("hl"))
|
else if (project.targetFlags.exists("hl") || project.targetFlags.exists("hlc"))
|
||||||
{
|
{
|
||||||
targetType = "hl";
|
targetType = "hl";
|
||||||
is64 = true;
|
is64 = true;
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ class WindowsPlatform extends PlatformTarget
|
|||||||
{
|
{
|
||||||
targetType = "neko";
|
targetType = "neko";
|
||||||
}
|
}
|
||||||
else if (project.targetFlags.exists("hl"))
|
else if (project.targetFlags.exists("hl") || targetFlags.exists("hlc"))
|
||||||
{
|
{
|
||||||
targetType = "hl";
|
targetType = "hl";
|
||||||
is64 = !project.flags.exists("32");
|
is64 = !project.flags.exists("32");
|
||||||
|
|||||||
Reference in New Issue
Block a user