- Added CDBusServer into Blackcore library
- Added DBus server and client sample
This commit is contained in:
Roland Winklmeier
2013-07-22 22:44:00 +02:00
parent 1c5293f38f
commit 40abcf4c19
28 changed files with 729 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
#-------------------------------------------------
#
# Project created by QtCreator 2013-07-06T22:37:57
#
#-------------------------------------------------
QT += core dbus
QT -= gui
TARGET = DBusServer
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
DBUS_ADAPTORS += planemanager.xml atcmanager.xml fsdclient.xml
DEPENDPATH += . ../../src
INCLUDEPATH += . ../../src
HEADERS += *.h
SOURCES += *.cpp
LIBS += -L../../lib -lblackcore -lblackmisc
win32:!win32-g++*: PRE_TARGETDEPS += ../../lib/blackmisc.lib \
../../lib/blackcore.lib
else: PRE_TARGETDEPS += ../../lib/libblackmisc.a \
../../lib/libblackcore.a
DESTDIR = ../../bin