blob: 466a3d33fe818e5edab971633f334bb0b8ab0566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@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
|