Add rebuild for Tizen emulator

This commit is contained in:
Joshua Granick
2013-12-17 13:40:25 -08:00
parent c4ea75418a
commit c1d558073c
2 changed files with 2 additions and 0 deletions

BIN
run.n vendored

Binary file not shown.

View File

@@ -438,12 +438,14 @@ class RunScript {
if (!flags.exists ("debug")) {
runCommand (path, "haxelib", [ "run", "hxlibc", buildFile, "-Dtizen" ].concat (defines));
runCommand (path, "haxelib", [ "run", "hxlibc", buildFile, "-Dtizen", "-Dsimulator" ].concat (defines));
}
if (!flags.exists ("release")) {
runCommand (path, "haxelib", [ "run", "hxlibc", buildFile, "-Dtizen", "-Dfulldebug" ].concat (defines));
runCommand (path, "haxelib", [ "run", "hxlibc", buildFile, "-Dtizen", "-Dsimulator", "-Dfulldebug" ].concat (defines));
}