IW4M-Admin/WebfrontCore/BuildScripts/PostBuild.bat

16 lines
365 B
Batchfile
Raw Normal View History

2018-04-07 17:47:21 -04:00
set SolutionDir=%1
2018-04-07 17:46:43 -04:00
set ProjectDir=%2
set TargetDir=%3
2018-04-07 17:47:21 -04:00
if not exist "%TargetDir%x86" (
echo "Copying SQLCe binaries"
md "%TargetDir%x86"
2018-04-08 02:44:42 -04:00
xcopy /y "%SolutionDir%SharedLibraryCore\LibSQLCe\x86" "%TargetDir%x86\"
2018-04-07 17:47:21 -04:00
)
if not exist "%TargetDir%Plugins" (
echo "Making plugin dir"
md "%TargetDir%Plugins"
)
xcopy /y "%SolutionDir%Build\Plugins" "%TargetDir%Plugins\"