diff options
author | Ladislav <Zezula> | 2014-08-23 21:45:30 +0200 |
---|---|---|
committer | Ladislav <Zezula> | 2014-08-23 21:45:30 +0200 |
commit | d36d4d38789f4a0f228a233e31503ba086164e44 (patch) | |
tree | aaa130218c6718140699967c0bfc250965b27575 /StormLib.bat | |
parent | bff3599502e8990f848f39be055d6575e21e76e8 (diff) |
+ Fixed batch file for my personal directory only
+ Added private key for strong signature
Diffstat (limited to 'StormLib.bat')
-rw-r--r-- | StormLib.bat | 47 |
1 files changed, 25 insertions, 22 deletions
diff --git a/StormLib.bat b/StormLib.bat index 65e8429..509a0ef 100644 --- a/StormLib.bat +++ b/StormLib.bat @@ -1,22 +1,25 @@ -@echo off -rem Post-build batch for StormLib project -rem Called as StormLib.bat $(PlatformName) $(ConfigurationName) -rem Example: StormLib.bat x64 Debug - -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 - +@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
+
+
|