comparison x265/build/vc12-x86_64/build-all.bat @ 0:772086c29cc7

Initial import.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 16 Nov 2016 11:16:33 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:772086c29cc7
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 )