mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-23 15:59:57 +00:00
19 lines
692 B
Batchfile
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.
|