Added batch files to the win32 project directories so the projects can be built from the command line. Made minor tweaks to a few projects.
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1072 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
24
sql/win32/sql/buildall.cmd
Normal file
24
sql/win32/sql/buildall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=sql.sln
|
||||
set operation=Build
|
||||
|
||||
set build="Release"
|
||||
if "%1" == "debug" (set build="Debug" && goto do_build)
|
||||
if "%1" == "release" (set build="Release" && goto do_build)
|
||||
if NOT "%1" == "" goto help
|
||||
|
||||
:do_build
|
||||
echo %operation%ing %solution% %build% build...
|
||||
devenv flaim-projects.sln /%operation% %build%
|
||||
|
||||
goto done
|
||||
|
||||
:help
|
||||
echo Usage: %0 [release^|debug]
|
||||
echo %operation%s the "release" build by default.
|
||||
|
||||
:done
|
||||
endlocal
|
||||
24
sql/win32/sql/cleanall.cmd
Normal file
24
sql/win32/sql/cleanall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=sql.sln
|
||||
set operation=Clean
|
||||
|
||||
set build="Release"
|
||||
if "%1" == "debug" (set build="Debug" && goto do_build)
|
||||
if "%1" == "release" (set build="Release" && goto do_build)
|
||||
if NOT "%1" == "" goto help
|
||||
|
||||
:do_build
|
||||
echo %operation%ing %solution% %build% build...
|
||||
devenv flaim-projects.sln /%operation% %build%
|
||||
|
||||
goto done
|
||||
|
||||
:help
|
||||
echo Usage: %0 [release^|debug]
|
||||
echo %operation%s the "release" build by default.
|
||||
|
||||
:done
|
||||
endlocal
|
||||
Reference in New Issue
Block a user