We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df76cb1 commit 5ba7e8eCopy full SHA for 5ba7e8e
src/lime/tools/ProjectXMLParser.hx
@@ -128,7 +128,7 @@ class ProjectXMLParser extends HXProject
128
{
129
defines.set("native", "1");
130
131
- if (target == Platform.WINDOWS)
+ if (target == Platform.WINDOWS && targetFlags.exists("mingw"))
132
133
defines.set("targetType", "cpp");
134
defines.set("cpp", "1");
tools/platforms/WindowsPlatform.hx
@@ -138,7 +138,7 @@ class WindowsPlatform extends PlatformTarget
138
139
targetType = "winjs";
140
}
141
- else if (project.targetFlags.exists("neko") || project.target != cast System.hostPlatform)
+ else if (project.targetFlags.exists("neko"))
142
143
targetType = "neko";
144
0 commit comments