[build]: add build script for vc10-x86_64

git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@66 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
ChenHengming 2015-08-07 10:34:08 +00:00
parent a7f4bb2dd1
commit 66e3a56c0f
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,14 @@
@echo off
if "%VS120COMNTOOLS%" == "" (
msg "%username%" "Visual Studio 12 not detected"
exit 1
)
if not exist rk_mpp.sln (
call make-solutions.bat
)
if exist rk_mpp.sln (
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat"
rem MSBuild /property:Configuration="Release" rk_mpp.sln
MSBuild /property:Configuration="Debug" rk_mpp.sln
rem MSBuild /property:Configuration="RelWithDebInfo" rk_mpp.sln
)

View file

@ -0,0 +1,8 @@
@echo off
::
:: run this batch file to create a Visual Studio solution file for this project.
:: See the cmake documentation for other generator targets
::
cmake -G "Visual Studio 10 Win64" ../../ && cmake-gui ../../
::pause on