mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
- Added DBus handler interface - Added more complex flow to both samples - Added custom class to be transfered
30 lines
602 B
Prolog
30 lines
602 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2013-07-07T15:31:07
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core dbus
|
|
|
|
QT -= gui
|
|
|
|
TARGET = DBusClient
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
DBUS_INTERFACES += dbus/aircraftmanager.xml dbus/atcmanager.xml dbus/fsdclient.xml
|
|
|
|
QDBUSXML2CPP_INTERFACE_HEADER_FLAGS = -i remote_aircraft.h
|
|
QDBUSXML2CPP_ADAPTOR_HEADER_FLAGS = -i remote_aircraft.h
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
dbusclient.cpp \
|
|
remote_aircraft.cpp
|
|
|
|
HEADERS += \
|
|
dbusclient.h \
|
|
remote_aircraft.h
|