SimpleHelperTools/compile.bat
2025-01-24 07:57:46 -07:00

26 lines
658 B
Batchfile

git clean -xfd
git reset --hard
mkdir cpp\build
cd cpp\build
cmake ..
cmake --build .
cd ..\..
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
call dart compile exe -o out\nbt2snbt.exe bin\nbt2snbt.dart
call dart compile exe -o out\snbt2nbt.exe bin\snbt2nbt.dart
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\timestamp.exe bin\timestamp.dart
cd ..