server/dep/StormLib/StormLib.bat
Salja f4be15a7af Some missing from merge.
Signed-off-by: Salja <salja2012@hotmail.de>
2020-02-16 02:50:23 +00:00

22 lines
454 B
Batchfile

@echo off
rem Post-build batch for StormLib project
rem Called as StormLib.bat $(PlatformName) $(ConfigurationName)
rem Example: StormLib.bat x64 Debug
copy src\StormPort.h ..\aaa\inc
copy src\StormLib.h ..\aaa\inc
if x%1 == xWin32 goto PlatformWin32
if x%1 == xx64 goto PlatformWin64
goto exit
:PlatformWin32
copy .\bin\Stormlib\%1\%2\*.lib ..\aaa\lib32
goto exit
:PlatformWin64
copy .\bin\Stormlib\%1\%2\*.lib ..\aaa\lib64
goto exit
:exit