1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

moved build events to batch files

This commit is contained in:
RaidMax
2018-04-07 16:46:43 -05:00
parent 0db93be91f
commit a857c43d00
7 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,9 @@
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
if not exist "%TargetDir%x86" (
echo "Copying SQLCe binaries"
md "%TargetDir%x86"
xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
)