libretro-super/retroarch-build-msvc2010-x86.bat
2017-07-02 17:50:26 +01:00

19 lines
692 B
Batchfile

@echo off
echo cd pkg\msvc
cd pkg\msvc
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
echo msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32
echo move Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
move Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
echo move Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
echo Build finished.