Add "all" target for build.bat.

This commit is contained in:
Kimmo Varis 2010-01-09 13:54:56 +02:00
parent 888fe5ac9d
commit c48eb090e0
1 changed files with 7 additions and 4 deletions

View File

@ -1,13 +1,13 @@
@echo off @echo off
REM A simple script to build different cppcheck targets from project root REM A simple script to build different cppcheck targets from project root
REM folder. REM folder. This script can be run from VS prompt or Qt prompt.
REM REM
REM Usage: build <target> [release|debug] REM Usage: build <target> [release|debug]
REM where <target> is any of cppcheck/gui/tests REM where <target> is any of cppcheck/gui/tests/all
REM release or debug is the configuration REM release or debug is the configuration
REM all-target builds both cppcheck and gui.
REM REM
REM TODO: REM TODO:
REM - add "all" target
REM - run tests too REM - run tests too
if "%1" == "" goto help if "%1" == "" goto help
@ -26,6 +26,7 @@ if "%2" == "debug" set TARGET=debug
if "%1" == "cppcheck" goto cppcheck if "%1" == "cppcheck" goto cppcheck
if "%1" == "gui" goto gui if "%1" == "gui" goto gui
if "%1" == "tests" goto tests if "%1" == "tests" goto tests
if "%1" == "all" goto cppcheck
goto help goto help
:cppcheck :cppcheck
@ -33,6 +34,7 @@ cd cli
qmake -config %TARGET% qmake -config %TARGET%
%MAKE% %MAKE%
cd .. cd ..
if "%1" == "all" goto gui
goto end goto end
:gui :gui
@ -52,7 +54,8 @@ goto end
:help :help
echo "Syntax: build <target> [debug|release]" echo "Syntax: build <target> [debug|release]"
echo " where <target> is any of cppcheck/gui/tests" echo " where <target> is any of cppcheck/gui/tests/all"
echo " debug or release define used configuration" echo " debug or release define used configuration"
echo " all- target builds both cppcheck and gui.
:end :end