blob: f07e494ed1764d738844a7ad331ce4d770e0c757 (
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
|
INCLUDEPATH *= $$PWD
QT += network
# Input
HEADERS += $$PWD/symbianutils_global.h \
$$PWD/callback.h \
$$PWD/trkutils.h \
$$PWD/trkutils_p.h \
$$PWD/trkdevice.h \
$$PWD/launcher.h \
$$PWD/bluetoothlistener.h \
$$PWD/communicationstarter.h \
$$PWD/symbiandevicemanager.h \
$$PWD/tcftrkdevice.h \
$$PWD/tcftrkmessage.h \
$$PWD/json.h
SOURCES += $$PWD/trkutils.cpp \
$$PWD/trkdevice.cpp \
$$PWD/launcher.cpp \
$$PWD/bluetoothlistener.cpp \
$$PWD/communicationstarter.cpp \
$$PWD/symbiandevicemanager.cpp \
$$PWD/tcftrkdevice.cpp \
$$PWD/tcftrkmessage.cpp \
$$PWD/json.cpp
# Tests/trklauncher is a console application
contains(QT, gui) {
HEADERS += $$PWD/bluetoothlistener_gui.h
SOURCES += $$PWD/bluetoothlistener_gui.cpp
} else {
message(Trk: Console ...)
}
|