Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rem _copy_dat.bat
- @echo off
- rem (this is ran every build generation. it copies current assets,
- rem before printing total line count of source)
- echo copying assets...
- if not "%RELEASE_BUILD%"=="true" goto no_release
- rmdir /s /q "bin/Release/dat/"
- cp -r _copy_to/dat/ bin/Release
- :no_release
- if not "%DEBUG_BUILD%"=="true" goto no_debug
- rmdir /s /q "bin/Debug/dat/"
- cp -r _copy_to/dat/ bin/Debug
- :no_debug
- echo done!
- py countLines.py code/include code/src kit/include/ kit/src
- rem pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement