SimpleHelperTools/compile.bat

26 lines
No EOL
621 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\\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\\regedit.exe bin\\regedit.dart
cd ..