Rebuild script fixes

This commit is contained in:
Joshua Granick
2014-03-31 15:36:44 -07:00
parent ed812dafef
commit 497af56b8d
2 changed files with 2 additions and 14 deletions

BIN
run.n vendored

Binary file not shown.

View File

@@ -515,12 +515,6 @@ class RunScript {
if (!flags.exists ("debug")) {
if (buildSharedLibs) {
runCommand (sharedLibsPath, "neko", [ "build.n", "-Dwebos" ].concat (defines));
}
runCommand (path, "haxelib", [ "run", buildLib, buildFile, "-Dwebos" ].concat (defines));
synchronizeNDLL ("webOS/lime.so");
@@ -528,12 +522,6 @@ class RunScript {
if (!flags.exists ("release")) {
if (buildSharedLibs) {
runCommand (sharedLibsPath, "neko", [ "build.n", "-Dwebos", "-Dfulldebug" ].concat (defines));
}
runCommand (path, "haxelib", [ "run", buildLib, buildFile, "-Dwebos", "-Dfulldebug" ].concat (defines));
synchronizeNDLL ("webOS/lime-debug.so");
@@ -545,7 +533,7 @@ class RunScript {
if (buildSharedLibs) {
runCommand (sharedLibsPath, "neko", [ "windows" ].concat (defines));
runCommand (sharedLibsPath, "neko", [ "build.n", "windows" ].concat (defines));
}
@@ -609,7 +597,7 @@ class RunScript {
if (buildSharedLibs) {
runCommand (sharedLibsPath, "neko", [ "wiiu" ].concat (defines));
runCommand (sharedLibsPath, "neko", [ "build.n", "wiiu" ].concat (defines));
}