Imported Upstream version 1.4
[deb_x265.git] / build / vc12-x86_64 / build-all.bat
1 @echo off
2 if "%VS120COMNTOOLS%" == "" (
3 msg "%username%" "Visual Studio 12 not detected"
4 exit 1
5 )
6 if not exist x265.sln (
7 call make-solutions.bat
8 )
9 if exist x265.sln (
10 call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat"
11 MSBuild /property:Configuration="Release" x265.sln
12 MSBuild /property:Configuration="Debug" x265.sln
13 MSBuild /property:Configuration="RelWithDebInfo" x265.sln
14 )