mirror of
https://github.com/SFML/SFML.git
synced 2024-11-26 05:11:04 +08:00
12 lines
503 B
Batchfile
12 lines
503 B
Batchfile
|
@echo off
|
||
|
|
||
|
set MSBUILD=%WINDIR%\Microsoft.NET\Framework\v2.0.50727\msbuild
|
||
|
|
||
|
echo Compiling debug dynamic libraries...
|
||
|
%MSBUILD% ..\CSFML.sln /verbosity:q /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 /target:csfml-main,csfml-system,csfml-network,csfml-window,csfml-graphics,csfml-audio /property:Configuration="Release DLL"
|
||
|
|
||
|
echo Done
|