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
flaim/win32/flaim/buildall.cmd
Normal file
24
flaim/win32/flaim/buildall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=flaim.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
flaim/win32/flaim/cleanall.cmd
Normal file
24
flaim/win32/flaim/cleanall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=flaim.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
|
||||
@@ -51,7 +51,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
@@ -132,7 +132,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
@@ -119,7 +119,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
||||
24
ftk/win32/ftk/buildall.cmd
Normal file
24
ftk/win32/ftk/buildall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=ftk.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
ftk/win32/ftk/cleanall.cmd
Normal file
24
ftk/win32/ftk/cleanall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=ftk.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
|
||||
@@ -50,7 +50,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
@@ -132,7 +132,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
@@ -115,7 +115,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
@@ -136,7 +136,7 @@
|
||||
UsePrecompiledHeader="0"
|
||||
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
|
||||
WarningLevel="4"
|
||||
WarnAsError="true"
|
||||
WarnAsError="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
|
||||
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
|
||||
24
win32/flaim-projects/buildall.cmd
Normal file
24
win32/flaim-projects/buildall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=flaim-projects.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
win32/flaim-projects/cleanall.cmd
Normal file
24
win32/flaim-projects/cleanall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=flaim-projects.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
|
||||
24
xflaim/win32/xflaim/buildall.cmd
Normal file
24
xflaim/win32/xflaim/buildall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=xflaim.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
xflaim/win32/xflaim/cleanall.cmd
Normal file
24
xflaim/win32/xflaim/cleanall.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
@ECHO OFF
|
||||
|
||||
setlocal
|
||||
|
||||
set solution=xflaim.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