1
0
Fork 0

Update prebuildStep.bat

The files when built have an underscore . I think that this is because despite having the file target name set to x32bridge.lib in MSC++2013 , it will place an underscore in the name. So I altered the  prebuild script when I realized the files weren't being copped over.
This commit is contained in:
ApertureSecurity 2015-04-15 16:05:08 -06:00
parent f99959124a
commit 9881571c64
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
rem Working directory: '%{sourceDir}'
rem argument1: architecture 'x32' or 'x64'
set result=1
copy ..\..\bin\%1\lib%1bridge.a Src\Bridge\
copy ..\..\bin\%1\lib%1_bridge.a Src\Bridge\
if %ERRORLEVEL%==0 set result=0
copy ..\..\bin\%1\%1bridge.lib Src\Bridge\
copy ..\..\bin\%1\%1_bridge.lib Src\Bridge\
if %ERRORLEVEL%==0 set result=0
exit %result%
exit %result%