fix: using choco make now

This commit is contained in:
2025-01-18 18:53:30 +01:00
parent 589fd81942
commit 946b69941c

View File

@@ -353,7 +353,7 @@ void api_{functionName}(void) {{
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd"; startInfo.FileName = "cmd";
startInfo.Arguments = "/C cd ../Laika/ && mingw32-make fclean && mingw32-make"; startInfo.Arguments = "/C cd ../Laika/ && make fclean && make";
startInfo.RedirectStandardOutput = true; startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false; startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true; startInfo.CreateNoWindow = true;