blob: bee9005dea534c3c32c85741fa150ec40ee3d2f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
!include(../../../global.pri): error(global.pri not found)
!include($$SRCROOT/src/common/common.pri): error(common.pri not found)
SOURCES += main.cpp \
qtuitestslave.cpp \
qtuitestserver.cpp \
qtuitestmaster.cpp \
appmanager.cpp \
qtuitestdsettings.cpp
HEADERS += qtuitestslave.h \
appmanager.h \
qtuitestmaster_p.h \
qtuitest_debug.h \
qtuitestdsettings.h
TEMPLATE=app
VPATH+=$$PWD
INCLUDEPATH+=$$PWD
DEFINES += QTT_NO_DEBUG_AND_TRACEBACKS
!include(../../common/libs/QttDebug/qttdebug.pri): error(qttdebug.pri not found)
QT+=network
QT-=gui
TARGET=qtuitestd
unix {
# install the script to start qtuitestd in the required
# two places avoiding the need for symbolic links
initscripts.path = /etc/init/test
initscripts.files = initscripts/qtuitestd.conf
# TODO: Disabled for now
INSTALLS += initscripts
}
!symbian {
MOC_DIR=$$OUT_PWD/.moc
OBJECTS_DIR=$$OUT_PWD/.obj
DESTDIR=$$BUILDROOT/bin
target.path=$$QTT_INSTALL_BIN_DIR
INSTALLS+=target
}
win32 {
CONFIG+=console
}
mac {
CONFIG-=app_bundle
}
|