moved build events to batch files

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

View File

@ -0,0 +1,2 @@
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"

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\"
)

View File

@ -0,0 +1,2 @@
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"

View File

@ -0,0 +1,13 @@
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
if not exist "%SolutionDir%BUILD" (
echo "Making build dir"
mkdir "%SolutionDir%BUILD"
)
if not exist "%SolutionDir%BUILD\userraw\scripts" (
echo "Making userraw dir"
mkdir "%SolutionDir%BUILD\userraw\scripts"
)

View File

@ -0,0 +1,7 @@
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\"
)

View File

@ -0,0 +1,6 @@
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\Plugins\"
xcopy /Y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%SolutionDir%Publish\x86\"

View File

@ -0,0 +1,10 @@
set SolutionDir=%1
set ProjectDir=%2
if not exist "%SolutionDir%BUILD" (
mkdir "%SolutionDir%BUILD"
)
if not exist "%SolutionDir%BUILD\userraw\scripts" (
mkdir "%SolutionDir%BUILD\userraw\scripts"
)