aboutsummaryrefslogtreecommitdiff
path: root/Storm_dll.bat
diff options
context:
space:
mode:
authorLadislav Zezula <ladislav.zezula@avg.com>2013-04-02 13:56:06 +0200
committerLadislav Zezula <ladislav.zezula@avg.com>2013-04-02 13:56:06 +0200
commit3c6b23c092d3ebbf423dc5286160745eb12efd2c (patch)
treeb21cbd617d5f1bce4aff722275073573ed9a2096 /Storm_dll.bat
parentdc8594c36154eaeb5f87579c3c170a92335fce61 (diff)
+ Project file for Storm.dll export LIB was moved to the Storm_dll directory, as they are no longer needed
Diffstat (limited to 'Storm_dll.bat')
-rw-r--r--Storm_dll.bat18
1 files changed, 0 insertions, 18 deletions
diff --git a/Storm_dll.bat b/Storm_dll.bat
deleted file mode 100644
index 466a3d3..0000000
--- a/Storm_dll.bat
+++ /dev/null
@@ -1,18 +0,0 @@
-@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