-
Notifications
You must be signed in to change notification settings - Fork 43
/
pack_pdb.cmd
33 lines (30 loc) · 960 Bytes
/
pack_pdb.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
setlocal
set dst="Shareaza_{version}_Symbols.7z"
set zip="%ProgramFiles(x86)%\7-Zip\7z.exe"
if exist %zip% goto zip
set zip="%ProgramFiles%\7-Zip\7z.exe"
if exist %zip% goto zip
echo The 7z utility is missing. Please go to https://sourceforge.net/projects/sevenzip/ and install 7-Zip.
exit /b 1
:zip
set src=.\vc10\Win32\Release
if exist %src%\Shareaza.pdb goto work
set src=.\vc10\x64\Release
if exist %src%\Shareaza.pdb goto work
set src=.\vc10\Win32\Debug
if exist %src%\Shareaza.pdb goto work
set src=.\vc10\x64\Debug
if exist %src%\Shareaza.pdb goto work
set src=.\vc9\Win32\Release
if exist %src%\Shareaza.pdb goto work
set src=.\vc9\x64\Release
if exist %src%\Shareaza.pdb goto work
set src=.\vc9\Win32\Debug
if exist %src%\Shareaza.pdb goto work
set src=.\vc9\x64\Debug
if exist %src%\Shareaza.pdb goto work
echo Shareaza debug symbols are missing. Please compile Shareaza first.
exit /b 1
:work
del /q %dst% 2>nul
%zip% a -y -mx=9 %dst% %src%\*.pdb