Update build.py to properly build and copy libraries for Unity and Unreal (#120)

This commit is contained in:
Mason Sciotti
2018-02-12 13:40:41 -08:00
committed by GitHub
parent ccf04d21f5
commit c4201806cf
3 changed files with 76 additions and 22 deletions

View File

@ -27,7 +27,7 @@ public class ScriptBatch
proc.StartInfo.EnvironmentVariables["PATH"] = newPath;
#endif
proc.StartInfo.FileName = "python";
proc.StartInfo.Arguments = "build.py for_unity";
proc.StartInfo.Arguments = "build.py unity";
proc.StartInfo.WorkingDirectory = "../..";
proc.Start();
proc.WaitForExit();