Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
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/codadevice.h \
|
|
$$PWD/codamessage.h \
|
|
$$PWD/json.h \
|
|
$$PWD/virtualserialdevice.h
|
|
|
|
SOURCES += $$PWD/trkutils.cpp \
|
|
$$PWD/trkdevice.cpp \
|
|
$$PWD/launcher.cpp \
|
|
$$PWD/bluetoothlistener.cpp \
|
|
$$PWD/communicationstarter.cpp \
|
|
$$PWD/symbiandevicemanager.cpp \
|
|
$$PWD/codadevice.cpp \
|
|
$$PWD/codamessage.cpp \
|
|
$$PWD/json.cpp \
|
|
$$PWD/virtualserialdevice.cpp
|
|
|
|
DEFINES += HAS_SERIALPORT
|
|
win32:SOURCES += $$PWD/virtualserialdevice_win.cpp
|
|
unix:SOURCES += $$PWD/virtualserialdevice_posix.cpp
|
|
|
|
# Tests/trklauncher is a console application
|
|
contains(QT, gui) {
|
|
HEADERS += $$PWD/bluetoothlistener_gui.h
|
|
SOURCES += $$PWD/bluetoothlistener_gui.cpp
|
|
} else {
|
|
message(Trk: Console ...)
|
|
}
|