mirror of
https://github.com/libretro/libretro-super
synced 2024-12-27 21:24:43 +00:00
17 lines
533 B
Batchfile
17 lines
533 B
Batchfile
|
@echo off
|
||
|
cd pkg\msvc
|
||
|
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
|
||
|
rem del Debug\RetroArch-msvc2010.exe 2>nul
|
||
|
echo %date% %time% >buildlog.txt
|
||
|
tskill vcexpress 2>nul
|
||
|
set platform=
|
||
|
set PLATFORM=
|
||
|
set tmp=
|
||
|
set TMP=
|
||
|
echo Building RetroArch...
|
||
|
vcexpress RetroArch-msvc2010.sln /Out buildlog.txt /Rebuild Debug
|
||
|
move Debug\RetroArch-msvc2010.exe ../../retroarch.exe
|
||
|
move Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
|
||
|
cat buildlog.txt
|
||
|
echo Build finished.
|