2015-03-31 16:48:58 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2015-03-31T17:27:03
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += testlib
|
|
|
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = tst_test
|
|
|
|
|
2015-04-02 19:43:33 +02:00
|
|
|
# CONFIG += testcase adds a 'make check' which is great. But by default it also
|
|
|
|
# adds a 'make install' that installs the test cases, which we do not want.
|
|
|
|
# Can configure it not to do that with 'no_testcase_installs'
|
|
|
|
# We use C++11 standard
|
|
|
|
CONFIG += c++11 testcase no_testcase_installs
|
2015-03-31 16:48:58 +02:00
|
|
|
|
|
|
|
# Use out-of-source builds (shadow builds)
|
2015-04-02 19:43:33 +02:00
|
|
|
CONFIG -= app_bundle debug_and_release debug_and_release_target
|
2015-03-31 16:48:58 +02:00
|
|
|
|
2015-04-02 19:43:33 +02:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
# directory for executable file
|
|
|
|
DESTDIR = bin
|
|
|
|
|
|
|
|
# Directory for files created moc
|
|
|
|
MOC_DIR = moc
|
2015-03-31 16:48:58 +02:00
|
|
|
|
2015-04-02 19:43:33 +02:00
|
|
|
# objecs files
|
|
|
|
OBJECTS_DIR = obj
|
2015-04-02 13:31:23 +02:00
|
|
|
|
2015-03-31 16:48:58 +02:00
|
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
qttestmainlambda.cpp \
|
|
|
|
tst_test.cpp
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
tst_test.h
|