From 769be5d9d322e4865435307fe7dbde2946ebdb4c Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 1 Aug 2018 22:54:26 -0700 Subject: [PATCH] 64-bit Windows builds for C++ target only (for now) --- tools/platforms/WindowsPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/WindowsPlatform.hx b/tools/platforms/WindowsPlatform.hx index 416ea7b44..278280f33 100644 --- a/tools/platforms/WindowsPlatform.hx +++ b/tools/platforms/WindowsPlatform.hx @@ -78,7 +78,7 @@ class WindowsPlatform extends PlatformTarget { for (architecture in project.architectures) { - if (targetType != "neko" && architecture == Architecture.X64) { + if (targetType == "cpp" && architecture == Architecture.X64) { is64 = true;