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)