forked from qt-creator/qt-creator
Some scripts make use of this convention to differentiate unit tests from applications which happen to link to testlib. Reviewed-by: ossi
16 lines
356 B
Prolog
16 lines
356 B
Prolog
CONFIG += qtestlib
|
|
TEMPLATE = app
|
|
CONFIG -= app_bundle
|
|
DEFINES += AGGREGATION_LIBRARY
|
|
|
|
AGGREGATION_PATH = ../../../src/libs/aggregation
|
|
|
|
INCLUDEPATH += $$AGGREGATION_PATH
|
|
# Input
|
|
SOURCES += tst_aggregate.cpp \
|
|
$$AGGREGATION_PATH/aggregate.cpp
|
|
HEADERS += $$AGGREGATION_PATH/aggregate.h \
|
|
$$AGGREGATION_PATH/aggregation_global.h
|
|
|
|
TARGET=tst_$$TARGET
|