2009-07-10 22:13:34 +08:00
|
|
|
@echo off
|
|
|
|
|
2010-01-28 00:02:45 +08:00
|
|
|
set MSBUILD=%WINDIR%\Microsoft.NET\Framework\v3.5\msbuild
|
|
|
|
|
2009-07-10 22:13:34 +08:00
|
|
|
echo Compiling debug static libraries...
|
2010-01-28 00:02:45 +08:00
|
|
|
%MSBUILD% ..\SFML.sln /verbosity:q /maxcpucount /target:SFML\sfml-main,SFML\sfml-system,SFML\sfml-network,SFML\sfml-window,SFML\sfml-graphics,SFML\sfml-audio /property:Configuration="Debug static"
|
2009-07-10 22:13:34 +08:00
|
|
|
|
|
|
|
echo Compiling debug dynamic libraries...
|
2010-01-28 00:02:45 +08:00
|
|
|
%MSBUILD% ..\SFML.sln /verbosity:q /maxcpucount /target:SFML\sfml-main,SFML\sfml-system,SFML\sfml-network,SFML\sfml-window,SFML\sfml-graphics,SFML\sfml-audio /property:Configuration="Debug DLL"
|
2009-07-10 22:13:34 +08:00
|
|
|
|
|
|
|
echo Compiling release static libraries...
|
2010-01-28 00:02:45 +08:00
|
|
|
%MSBUILD% ..\SFML.sln /verbosity:q /maxcpucount /target:SFML\sfml-main,SFML\sfml-system,SFML\sfml-network,SFML\sfml-window,SFML\sfml-graphics,SFML\sfml-audio /property:Configuration="Release static"
|
2009-07-10 22:13:34 +08:00
|
|
|
|
|
|
|
echo Compiling release dynamic libraries...
|
2010-01-28 00:02:45 +08:00
|
|
|
%MSBUILD% ..\SFML.sln /verbosity:q /maxcpucount /target:SFML\sfml-main,SFML\sfml-system,SFML\sfml-network,SFML\sfml-window,SFML\sfml-graphics,SFML\sfml-audio /property:Configuration="Release DLL"
|
2009-07-10 22:13:34 +08:00
|
|
|
|
|
|
|
echo Done
|