summaryrefslogtreecommitdiff
path: root/Storm_dll.bat
diff options
context:
space:
mode:
authorLadislav Zezula <ladislav.zezula@avg.com>2013-01-11 14:55:08 +0100
committerLadislav Zezula <ladislav.zezula@avg.com>2013-01-11 14:55:08 +0100
commit3a926f0228c68d7d91cf3946624d7859976440ec (patch)
treec4e7d36dc8157576929988cdfcf5bfd8262cd09c /Storm_dll.bat
parentdf4b0c085478389c9a21a09521d46735a0109c8a (diff)
Initial creation
Diffstat (limited to 'Storm_dll.bat')
-rw-r--r--Storm_dll.bat18
1 files changed, 18 insertions, 0 deletions
diff --git a/Storm_dll.bat b/Storm_dll.bat
new file mode 100644
index 0000000..466a3d3
--- /dev/null
+++ b/Storm_dll.bat
@@ -0,0 +1,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