[build/window]: fix build script on vc10 and vc12

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

View File

@@ -1,5 +1,5 @@
@echo off @echo off
if "%VS120COMNTOOLS%" == "" ( if "%VS100COMNTOOLS%" == "" (
msg "%username%" "Visual Studio 12 not detected" msg "%username%" "Visual Studio 12 not detected"
exit 1 exit 1
) )

View File

@@ -7,7 +7,7 @@ if not exist rk_mpp.sln (
call make-solutions.bat call make-solutions.bat
) )
if exist rk_mpp.sln ( if exist rk_mpp.sln (
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat"
rem MSBuild /property:Configuration="Release" rk_mpp.sln rem MSBuild /property:Configuration="Release" rk_mpp.sln
MSBuild /property:Configuration="Debug" rk_mpp.sln MSBuild /property:Configuration="Debug" rk_mpp.sln
rem MSBuild /property:Configuration="RelWithDebInfo" rk_mpp.sln rem MSBuild /property:Configuration="RelWithDebInfo" rk_mpp.sln