mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 04:37:02 +00:00
18 lines
368 B
Batchfile
18 lines
368 B
Batchfile
@echo off
|
|
rem Post-build batch for StormDll project
|
|
rem Called as StormDll.bat $(PlatformName) $(ConfigurationName)
|
|
rem Example: StormDll.bat x64 Debug
|
|
|
|
if x%1 == xWin32 goto PlatformWin32
|
|
if x%1 == xx64 goto PlatformWin64
|
|
goto exit
|
|
|
|
:PlatformWin32
|
|
copy .\bin\Storm_dll\%1\%2\*.lib .
|
|
goto exit
|
|
|
|
:PlatformWin64
|
|
copy .\bin\Storm_dll\%1\%2\*.lib .
|
|
goto exit
|
|
|
|
:exit
|