SFML/CSFML/build/VC2008/batch-build/build.bat
LaurentGom ec524788c9 Fixed object files path in Visual C++ projects
Added CSFML batch-build for all Windows compilers

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1377 4e206d99-4929-0410-ac5d-dfc041789085
2010-01-28 09:51:39 +00:00

12 lines
523 B
Batchfile

@echo off
set MSBUILD=%WINDIR%\Microsoft.NET\Framework\v3.5\msbuild
echo Compiling debug dynamic libraries...
%MSBUILD% ..\CSFML.sln /verbosity:q /maxcpucount /target:csfml-main,csfml-system,csfml-network,csfml-window,csfml-graphics,csfml-audio /property:Configuration="Debug DLL"
echo Compiling release dynamic libraries...
%MSBUILD% ..\CSFML.sln /verbosity:q /maxcpucount /target:csfml-main,csfml-system,csfml-network,csfml-window,csfml-graphics,csfml-audio /property:Configuration="Release DLL"
echo Done