1
0
Fork 0

PROJECT: update release script to copy PDB files for archiving reasons

This commit is contained in:
Duncan Ogilvie 2020-06-03 15:18:50 +02:00
parent 23d788734a
commit 0b056c075b
1 changed files with 9 additions and 0 deletions

View File

@ -82,4 +82,13 @@ copy bin\x64\loaddll.exe %RELEASEDIR%\release\x64\
echo "creating commithash.txt"
git rev-parse HEAD > %RELEASEDIR%\commithash.txt
echo "copying PDB files"
mkdir %RELEASEDIR%\pdb
mkdir %RELEASEDIR%\pdb\x32
mkdir %RELEASEDIR%\pdb\x64
copy bin\*.pdb %RELEASEDIR%\pdb\
copy bin\x32\*.pdb %RELEASEDIR%\pdb\x32\
copy bin\x64\*.pdb %RELEASEDIR%\pdb\x64\
exit 0