aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/tools.pro
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2012-10-16 12:39:11 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2012-10-16 18:31:10 +0200
commitd18dee0a5c07640e1f3ee20915e9fdfa1499a008 (patch)
tree67cbb484985074e96810656c5c0aa267a4dc52be /tests/auto/tools/tools.pro
parent59f0fe901d2a7aa9a4ae5c42da3b30b156b16f29 (diff)
Move command line parser out of lib/.
It's by definition for use by the qbs command line tools only, so put it into app/. Also make the class name match the file name. Change-Id: I32f99563a9c5d1078137d90320aac0e6f28eaee6 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/tools/tools.pro')
-rw-r--r--tests/auto/tools/tools.pro7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/auto/tools/tools.pro b/tests/auto/tools/tools.pro
index f8f079f65..0a7031923 100644
--- a/tests/auto/tools/tools.pro
+++ b/tests/auto/tools/tools.pro
@@ -9,6 +9,9 @@ QT = core testlib
CONFIG += testcase
include(../../../src/lib/use.pri)
+include(../../../qbs_version.pri)
-SOURCES += \
- tst_tools.cpp
+HEADERS += \
+ ../../../src/app/shared/commandlineparser.h
+SOURCES += tst_tools.cpp \
+ ../../../src/app/shared/commandlineparser.cpp