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:
jcalcote
2008-07-02 00:25:17 +00:00
parent 922b12fec0
commit bd6d5215e6
15 changed files with 250 additions and 10 deletions

View 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

View 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