xref: /rockchip-linux_mpp/build/vc12-x86_64/build-all.bat (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1@echo off
2if "%VS120COMNTOOLS%" == "" (
3  msg "%username%" "Visual Studio 12 not detected"
4  exit 1
5)
6if not exist rk_mpp.sln (
7  call make-solutions.bat
8)
9if exist rk_mpp.sln (
10  call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat"
11  rem MSBuild /property:Configuration="Release" rk_mpp.sln
12  MSBuild /property:Configuration="Debug" rk_mpp.sln
13  rem MSBuild /property:Configuration="RelWithDebInfo" rk_mpp.sln
14)