|
@@ -5,6 +5,9 @@ import runci.System.*;
|
|
|
import runci.Config.*;
|
|
|
|
|
|
class Cs {
|
|
|
+ static var miscCsDir(get,never):String;
|
|
|
+ static inline function get_miscCsDir() return miscDir + 'cs/';
|
|
|
+
|
|
|
static public function getCsDependencies() {
|
|
|
switch (systemName) {
|
|
|
case "Linux":
|
|
@@ -76,7 +79,10 @@ class Cs {
|
|
|
// runCommand("haxe", ["build.hxml", "-cs", "export/cs"]);
|
|
|
// runCs("export/cs/bin/Main.exe");
|
|
|
|
|
|
- changeDirectory(miscDir + "csTwoLibs");
|
|
|
+ changeDirectory(miscCsDir);
|
|
|
+ runCommand("haxe", ["run.hxml"]);
|
|
|
+
|
|
|
+ changeDirectory(miscCsDir + "csTwoLibs");
|
|
|
for (i in 1...5)
|
|
|
{
|
|
|
runCommand("haxe", ['compile-$i.hxml','-D','fast_cast']);
|