Files
pilotclient/samples/dbusserver/sample_dbusserver.pro
Roland Winklmeier 40abcf4c19 refs #42:
- Added CDBusServer into Blackcore library
- Added DBus server and client sample
2013-07-22 22:44:00 +02:00

33 lines
745 B
Prolog

#-------------------------------------------------
#
# 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