File tree 1 file changed +8
-7
lines changed 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -295,8 +295,12 @@ class Project extends HXProject {
295
295
configureIncludeMacros();
296
296
configureCustomMacros();
297
297
configureOutputDir();
298
- configureCppia();
299
- configurePolymod();
298
+
299
+ if (isDesktop()) {
300
+ configureCppia();
301
+ }
302
+
303
+ configurePolymod();
300
304
configureHaxelibs();
301
305
configureAssets();
302
306
configureIcons();
@@ -661,13 +665,10 @@ class Project extends HXProject {
661
665
setHaxedef("scriptable");
662
666
663
667
var platformFolder:String =
664
- if (isWeb()) 'html5';
665
- else if (isWindows()) 'windows';
668
+ if (isWindows()) 'windows';
666
669
else if (isLinux()) 'linux';
667
670
else if (isMac()) 'macos';
668
- else if (isAndroid()) 'android';
669
- else if (isIOS()) 'ios';
670
- else throw 'Is anything else even supported?';
671
+ else throw '???';
671
672
672
673
// in the future we will do some first remove a few classes from the .info file
673
674
// and only then move it into the `bin` directory
You can’t perform that action at this time.
0 commit comments