You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
548 B

# This is an include file that defines generic parameters for all test programs.
# it is included in each *.pro file at the beginning.
TEMPLATE = app
LANGUAGE = C++
### uncomment these two lines for compiling with code coverage instrumentation
#QMAKE_CXXFLAGS_DEBUG += -fprofile-arcs -ftest-coverage
#QMAKE_LFLAGS_DEBUG += -fprofile-arcs -ftest-coverage
CONFIG += qt warn_on debug
INCLUDEPATH +=../.. ../../src/base ../../src/model ../../src/view ../../src/controller
unix {
UI_DIR = ../../.ui
MOC_DIR = ../../.moc
OBJECTS_DIR = .obj
}