From c48eb090e0d08b46e95a226ad2e2f5cc9f83167e Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sat, 9 Jan 2010 13:54:56 +0200 Subject: [PATCH] Add "all" target for build.bat. --- build.bat | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.bat b/build.bat index 3cd110620..14e7b5f78 100644 --- a/build.bat +++ b/build.bat @@ -1,13 +1,13 @@ @echo off 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 Usage: build [release|debug] -REM where is any of cppcheck/gui/tests +REM where is any of cppcheck/gui/tests/all REM release or debug is the configuration +REM all-target builds both cppcheck and gui. REM REM TODO: -REM - add "all" target REM - run tests too if "%1" == "" goto help @@ -26,6 +26,7 @@ if "%2" == "debug" set TARGET=debug if "%1" == "cppcheck" goto cppcheck if "%1" == "gui" goto gui if "%1" == "tests" goto tests +if "%1" == "all" goto cppcheck goto help :cppcheck @@ -33,6 +34,7 @@ cd cli qmake -config %TARGET% %MAKE% cd .. +if "%1" == "all" goto gui goto end :gui @@ -52,7 +54,8 @@ goto end :help echo "Syntax: build [debug|release]" -echo " where is any of cppcheck/gui/tests" +echo " where is any of cppcheck/gui/tests/all" echo " debug or release define used configuration" +echo " all- target builds both cppcheck and gui. :end