Imported Upstream version 1.4
[deb_x265.git] / build / vc10-x86 / build-all.bat
1 @echo off
2 if "%VS100COMNTOOLS%" == "" (
3 msg "%username%" "Visual Studio 10 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 "%VS100COMNTOOLS%\..\..\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 )