Move Windows tool executables to win source libs.

This commit is contained in:
Stan
2024-11-11 14:25:39 +01:00
parent 8d993b9250
commit ce588689ee
6 changed files with 23 additions and 5 deletions
+19 -3
View File
@@ -2,10 +2,26 @@ rem **Download sources and binaries of libraries**
rem **SVN revision to checkout for windows-libs**
rem **Update this line when you commit an update to windows-libs**
set "svnrev=28209"
set "svnrev=28234"
svn co https://svn.wildfiregames.com/public/windows-libs/trunk@%svnrev% win32
rem **Copy binaries to binaries/system/**
rem **Copy dependencies' binaries to binaries/system/**
for /d %%l in (win32\*) do (if exist %%l\bin copy /y %%l\bin\* ..\binaries\system\)
set DIR_LIST=boost enet fcollada fmt freetype gloox iconv icu libcurl libpng libsodium libxml2 microsoft miniupnpc nvtt openal sdl2 spidermonkey vorbis wxwidgets zlib
for %%d in (%DIR_LIST%) do (
if exist win32\%%d\bin\ (
copy /y win32\%%d\bin\* ..\binaries\system\
)
)
rem **Copy build tools to build/bin
mkdir ..\build\bin\ 2>nul
set TOOLCHAIN_DIR_LIST=premake-core cxxtest-4.4
for %%d in (%TOOLCHAIN_DIR_LIST%) do (
if exist win32\%%d\bin\ (
copy /y win32\%%d\bin\* ..\build\bin\
)
)