windows build script now produces .exe

This commit is contained in:
minjaesong
2023-06-21 23:49:42 +09:00
parent cf111d2507
commit 5d77694316
3 changed files with 12 additions and 3 deletions

View File

@@ -1,2 +0,0 @@
cd /D "%~dp0"
.\runtime-windows-x86\bin\java -Xms1G -Xmx6G -jar .\assets\TerrarumBuild.jar

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
return system(".\\runtime-windows-x86\\bin\\java -Xms1G -Xmx6G -jar .\\assets\\TerrarumBuild.jar");
}