4coder/package.bat

52 lines
1.7 KiB
Batchfile
Raw Normal View History

2016-03-07 06:11:37 +00:00
@echo off
2016-05-12 16:40:26 +00:00
pushd W:\4ed\meta
cl %OPTS% ..\code\readme_generator.c /Fereadmegen
popd
2016-05-10 17:59:02 +00:00
pushd W:\4ed\code
2016-05-12 16:40:26 +00:00
..\meta\readmegen
call "build_all.bat" /O2 /DFRED_KEEP_ASSERT
del ..\current_dist\4coder\*.html
2016-05-10 17:59:02 +00:00
copy ..\build\4ed.exe ..\current_dist\4coder\*
copy ..\build\4ed.pdb ..\current_dist\4coder\*
copy ..\build\4ed_app.dll ..\current_dist\4coder\*
copy ..\build\4ed_app.pdb ..\current_dist\4coder\*
copy ..\data\* ..\current_dist\4coder\*
copy README.txt ..\current_dist\4coder\*
copy TODO.txt ..\current_dist\4coder\*
2016-05-12 16:40:26 +00:00
del ..\current_dist\SUPERREADME.txt
2016-05-10 17:59:02 +00:00
del ..\current_dist\4coder\basic.cpp
2016-05-12 16:40:26 +00:00
del ..\current_dist\4coder\.4coder_settings
2016-03-07 06:11:37 +00:00
call "build_all.bat" /O2 /DFRED_SUPER /DFRED_KEEP_ASSERT
del ..\current_dist\4coder\*.html
2016-05-10 17:59:02 +00:00
copy ..\build\4ed.exe ..\current_dist_super\4coder\*
copy ..\build\4ed.pdb ..\current_dist_super\4coder\*
copy ..\build\4ed_app.dll ..\current_dist_super\4coder\*
copy ..\build\4ed_app.pdb ..\current_dist_super\4coder\*
copy buildsuper.bat ..\current_dist_super\4coder\*
copy ..\data\* ..\current_dist_super\4coder\*
del ..\current_dist_super\4coder\basic.cpp
copy 4coder_*.h ..\current_dist_super\4coder\*
copy 4coder_*.cpp ..\current_dist_super\4coder\*
copy README.txt ..\current_dist_super\4coder\*
copy TODO.txt ..\current_dist_super\4coder\*
copy SUPERREADME.txt ..\current_dist_super\4coder\*
copy ..\current_dist\4coder\3rdparty\* ..\current_dist_super\4coder\3rdparty\*
2016-05-10 18:04:06 +00:00
REM del ..\current_dist_super\4coder\*.pdb
2016-05-10 17:59:02 +00:00
del ..\current_dist_super\4coder\*.lib
del ..\current_dist_super\4coder\*.obj
del ..\current_dist_super\4coder\4coder_custom.dll
2016-05-12 16:40:26 +00:00
del ..\current_dist_super\4coder\.4coder_settings
2016-03-07 06:11:37 +00:00
2016-07-05 14:08:00 +00:00
copy 4coder_API.html ..\current_dist_super\*
2016-05-10 17:59:02 +00:00
del ..\current_dist_power\power\* /F /Q
copy power\* ..\current_dist_power\power\*
2016-03-07 06:11:37 +00:00
2016-05-12 16:40:26 +00:00
popd