[haxe] fixes for windows compatibility
This commit is contained in:
@@ -86,7 +86,13 @@ class HaxeBuilder extends Builder {
|
||||
}
|
||||
|
||||
prepare() {
|
||||
return this.haxe.prepare();
|
||||
let result = this.haxe.prepare().then(() => this.haxe.install(this.config.libs));
|
||||
/*if (this.buildSystem === BuildSystem.OPENFL) {
|
||||
result = result.then(() => {
|
||||
return this.haxe.haxelib(['run', 'openfl', 'setup', this.platform]);
|
||||
});
|
||||
}*/
|
||||
return result;
|
||||
}
|
||||
|
||||
call() {
|
||||
@@ -294,6 +300,7 @@ class LinuxRunner extends Runner {
|
||||
}
|
||||
|
||||
Runner.register(Platform.LINUX, LinuxRunner);
|
||||
Runner.register(Platform.WINDOWS, LinuxRunner); //ToDo:
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user