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

19 lines
680 B
Batchfile
Raw Normal View History

@echo off
2017-04-11 13:18:22 -04:00
echo cd pkg\msvc
cd pkg\msvc
2017-04-11 13:18:22 -04:00
echo "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
2017-04-11 10:43:51 -04:00
2017-04-11 13:32:30 -04:00
echo msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32
call msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32
2017-04-11 13:18:22 -04:00
echo move Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
move Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
2017-04-11 13:18:22 -04:00
echo move Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
2017-04-11 13:32:30 -04:00
echo Build finished.