1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 15:52:25 -05:00

don't migrate context on MySql

This commit is contained in:
RaidMax
2018-04-07 16:47:21 -05:00
parent a857c43d00
commit d5aa03d277
13 changed files with 89 additions and 84 deletions

View File

@ -1,7 +1,16 @@
set SolutionDir=%1
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
if not exist "%ProjectDir%LibSQLCE\x86" (
md "%TargetDir%x86" xcopy /y "%ProjectDir%LibSQLCE\x86" "%TargetDir%x86\"
)
if not exist "%TargetDir%x86" (
echo "Copying SQLCe binaries"
md "%TargetDir%x86"
xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
)
if not exist "%TargetDir%Plugins" (
echo "Making plugin dir"
md "%TargetDir%Plugins"
)
xcopy /y "%SolutionDir%Build\Plugins" "%TargetDir%Plugins\"