From 3eb1d0e691c48f0b1bad372fdbfc6889d9ca8666 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 29 Nov 2024 12:36:56 -0700 Subject: [PATCH] Add commit helper to compile scripts --- compile.bat | 4 ++-- compile.sh | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/compile.bat b/compile.bat index 7029b71..61097a0 100644 --- a/compile.bat +++ b/compile.bat @@ -13,7 +13,7 @@ cd dart mkdir out call dart pub get - +call dart compile exe -o out\\gch.exe bin\\ch.dart call dart compile exe -o out\\dbikc.exe bin\\dbikc.dart call dart compile exe -o out\\uuidgen.exe bin\\uuidgen.dart call dart compile exe -o out\\mkfsreport.exe bin\\mkfsreport.dart @@ -23,4 +23,4 @@ call dart compile exe -o out\\pause.exe bin\\pause.dart call dart compile exe -o out\\sleep.exe bin\\sleep.dart call dart compile exe -o out\\regedit.exe bin\\regedit.dart -cd .. \ No newline at end of file +cd .. diff --git a/compile.sh b/compile.sh index 313ae64..9d3361a 100755 --- a/compile.sh +++ b/compile.sh @@ -10,6 +10,8 @@ cd dart mkdir out dart pub get + +dart compile exe -o out/gch-linux-x64 bin/ch.dart dart compile exe -o out/dbikc-linux-x64 bin/dbikc.dart dart compile exe -o out/mkfsreport-linux-x64 bin/mkfsreport.dart dart compile exe -o out/nbt2snbt-linux-x64 bin/nbt2snbt.dart @@ -29,4 +31,4 @@ cd build cmake .. make -cd ../.. \ No newline at end of file +cd ../..