libbpg-0.9.6

This commit is contained in:
King_DuckZ 2015-10-27 11:46:00 +01:00
commit 35a8402710
248 changed files with 232891 additions and 100 deletions

View file

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