blob: ff67906b344abbc1837f74bc9369ec0b1dc64f57 (
plain)
1
2
3
4
5
6
7
8
|
@echo off
set tp=%1
if "%tp%"=="" (echo "please specify target platform 32 or 64!" && pause && goto :EOF)
rc version.rc
MsBuild.exe historypp.dproj /t:Rebuild /p:Configuration=Release;Platform=Win%tp% /fileLogger /fileLoggerParameters:LogFile=Logs\icons%tp%.log;errorsonly;warningsonly;summary
|