add MSVC2010 files

This commit is contained in:
Brad Parker 2017-03-14 00:20:30 -07:00
parent b5df364ce6
commit 2083c58eee
8 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,11 @@
PATH /mingw64/lib/ccache/bin:/mingw64/bin
MSYSTEM MINGW64
platform MINGW64
PLATFORM windows
ARCH x86_64
MAKE make
CC /mingw64/bin/gcc
CXX /mingw64/bin/g++
CONFIGURE echo
RA YES
CUSTOM_BUILD ../retroarch-build-msvc2010-x64.bat

View File

@ -0,0 +1 @@
retroarch retroarch https://github.com/libretro/Retroarch.git SUBMODULE YES .

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,12 @@
PATH /mingw32/lib/ccache/bin:/mingw32/bin
MSYSTEM MINGW32
platform MINGW32
PLATFORM windows
ARCH x86
MAKE make
CC gcc
CXX g++
CXX11 g++
CONFIGURE echo
RA YES
CUSTOM_BUILD ../retroarch-build-msvc2010-x86.bat

View File

@ -0,0 +1 @@
retroarch retroarch https://github.com/libretro/Retroarch.git SUBMODULE YES .

View File

@ -0,0 +1,16 @@
@echo off
cd pkg\msvc
rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
rem del x64\Release\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 "Release|x64" /Project RetroArch-msvc2010 /ProjectConfig "Release|x64"
move x64\Release\RetroArch-msvc2010.exe ../../retroarch.exe
cat buildlog.txt
echo Build finished.

View File

@ -0,0 +1,15 @@
@echo off
cd pkg\msvc
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
rem del Release\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 Release
move Release\RetroArch-msvc2010.exe ../../retroarch.exe
cat buildlog.txt
echo Build finished.