@echo off if "%VS110COMNTOOLS%" == "" ( msg "%username%" "Visual Studio 11 not detected" exit 1 ) if not exist x265.sln ( call make-solutions.bat ) if exist x265.sln ( call "%VS110COMNTOOLS%\..\..\VC\vcvarsall.bat" MSBuild /property:Configuration="Release" x265.sln MSBuild /property:Configuration="Debug" x265.sln MSBuild /property:Configuration="RelWithDebInfo" x265.sln )