libretro-super/retroarch-build-msvc2010-x86.bat

19 lines
649 B
Batchfile
Raw Normal View History

2017-03-14 07:20:30 +00:00
@echo off
cd pkg\msvc
2017-03-25 13:00:53 +00:00
echo Setting MSVC Environment...
2017-03-14 07:20:30 +00:00
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
2017-04-11 14:43:51 +00:00
2017-03-14 07:20:30 +00:00
rem del Release\RetroArch-msvc2010.exe 2>nul
2017-03-25 13:00:53 +00:00
echo Appending build log...
2017-03-14 07:20:30 +00:00
echo %date% %time% >buildlog.txt
set platform=
set PLATFORM=
set tmp=
set TMP=
echo Building RetroArch...
2017-04-11 14:43:51 +00:00
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32 /flp:LogFile=buildlog.txt;verbosity=normal;Append
2017-03-25 13:00:53 +00:00
echo Moving dist files...
2017-03-14 07:20:30 +00:00
move Release\RetroArch-msvc2010.exe ../../retroarch.exe
move Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
2017-03-14 07:20:30 +00:00
echo Build finished.