Files
qt-creator/tests/auto/aggregation/aggregation.pro
Rohan McGovern f1f46be2f1 Make tests follow Qt conventions by starting all unit tests with `tst_'.
Some scripts make use of this convention to differentiate unit tests
from applications which happen to link to testlib.

Reviewed-by: ossi
2009-09-22 00:36:25 +10:00

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