diff --git a/build/codeblocks/batch-build/build.bat b/build/codeblocks/batch-build/build.bat index bfb07045..d655067a 100644 --- a/build/codeblocks/batch-build/build.bat +++ b/build/codeblocks/batch-build/build.bat @@ -12,33 +12,33 @@ cd %SFML%\build\codeblocks echo Compiling debug static libraries... codeblocks -na -nd -ns --build sfml-main.cbp --target="Debug" -codeblocks -na -nd -ns --build sfml-audio.cbp --target="Debug static_Win32" -codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Debug static_Win32" -codeblocks -na -nd -ns --build sfml-network.cbp --target="Debug static_Win32" codeblocks -na -nd -ns --build sfml-system.cbp --target="Debug static_Win32" codeblocks -na -nd -ns --build sfml-window.cbp --target="Debug static_Win32" +codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Debug static_Win32" +codeblocks -na -nd -ns --build sfml-audio.cbp --target="Debug static_Win32" +codeblocks -na -nd -ns --build sfml-network.cbp --target="Debug static_Win32" echo Compiling debug dynamic libraries... -codeblocks -na -nd -ns --build sfml-audio.cbp --target="Debug DLL_Win32" -codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Debug DLL_Win32" -codeblocks -na -nd -ns --build sfml-network.cbp --target="Debug DLL_Win32" codeblocks -na -nd -ns --build sfml-system.cbp --target="Debug DLL_Win32" codeblocks -na -nd -ns --build sfml-window.cbp --target="Debug DLL_Win32" +codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Debug DLL_Win32" +codeblocks -na -nd -ns --build sfml-audio.cbp --target="Debug DLL_Win32" +codeblocks -na -nd -ns --build sfml-network.cbp --target="Debug DLL_Win32" echo Compiling release static libraries... codeblocks -na -nd -ns --build sfml-main.cbp --target="Release" -codeblocks -na -nd -ns --build sfml-audio.cbp --target="Release static_Win32" -codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Release static_Win32" -codeblocks -na -nd -ns --build sfml-network.cbp --target="Release static_Win32" codeblocks -na -nd -ns --build sfml-system.cbp --target="Release static_Win32" codeblocks -na -nd -ns --build sfml-window.cbp --target="Release static_Win32" +codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Release static_Win32" +codeblocks -na -nd -ns --build sfml-audio.cbp --target="Release static_Win32" +codeblocks -na -nd -ns --build sfml-network.cbp --target="Release static_Win32" echo Compiling release dynamic libraries... -codeblocks -na -nd -ns --build sfml-audio.cbp --target="Release DLL_Win32" -codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Release DLL_Win32" -codeblocks -na -nd -ns --build sfml-network.cbp --target="Release DLL_Win32" codeblocks -na -nd -ns --build sfml-system.cbp --target="Release DLL_Win32" codeblocks -na -nd -ns --build sfml-window.cbp --target="Release DLL_Win32" +codeblocks -na -nd -ns --build sfml-graphics.cbp --target="Release DLL_Win32" +codeblocks -na -nd -ns --build sfml-network.cbp --target="Release DLL_Win32" +codeblocks -na -nd -ns --build sfml-audio.cbp --target="Release DLL_Win32" REM Copy the SFML static libraries into a temporary folder IF NOT EXIST %TMP% mkdir %TMP% @@ -56,13 +56,6 @@ ar rs libsfml-window-s.a *.o ar rs libsfml-window-s-d.a *.o del *.o /f /q -REM Add external libraries to sfml-network -echo Adding external libraries to libsfml-network-s... -ar x %SFML%\build\codeblocks\batch-build\libws2_32.a -ar rs libsfml-network-s.a *.o -ar rs libsfml-network-s-d.a *.o -del *.o /f /q - REM Add external libraries to sfml-graphics echo Adding external libraries to libsfml-graphics-s... ar x %SFML%\extlibs\libs-mingw\libfreetype.a @@ -78,6 +71,13 @@ ar rs libsfml-audio-s.a *.o ar rs libsfml-audio-s-d.a *.o del *.o /f /q +REM Add external libraries to sfml-network +echo Adding external libraries to libsfml-network-s... +ar x %SFML%\build\codeblocks\batch-build\libws2_32.a +ar rs libsfml-network-s.a *.o +ar rs libsfml-network-s-d.a *.o +del *.o /f /q + REM Copy the SFML libraries to their final location echo Cleaning up... xcopy *.a %SFML%\lib\mingw /q /y