aboutsummaryrefslogtreecommitdiff
path: root/StormLib.bat
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2020-05-13 08:07:19 +0200
committerLadislav Zezula <zezula@volny.cz>2020-05-13 08:07:19 +0200
commitb8e3800b549b46fd9d2c27c41fde3e993e47ad7a (patch)
treebc12b8a2d20ce9f103de43b6d440d68ac84c5e0b /StormLib.bat
parent9a17c626510d78fb91b8f69fc52b57c5381b0dea (diff)
Minox fixes
Diffstat (limited to 'StormLib.bat')
-rw-r--r--StormLib.bat23
1 files changed, 0 insertions, 23 deletions
diff --git a/StormLib.bat b/StormLib.bat
deleted file mode 100644
index c2cc7de..0000000
--- a/StormLib.bat
+++ /dev/null
@@ -1,23 +0,0 @@
-@echo off
-rem Post-build batch for StormLib project
-rem Called as StormLib.bat $(PlatformName) $(ConfigurationName)
-rem Example: StormLib.bat x64 Debug
-
-if not exist ..\aaa goto exit
-
-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