libbpg/x265/build/vc9-x86/build-all.bat
2015-10-27 11:46:00 +01:00

14 lines
400 B
Batchfile

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