Files
qcma/qcma_cli.pro
codestation 36a91d78aa Fixed android compilation.
Version bump.
Fixed file size problem under windows.
Updated changelog.
2014-06-28 00:26:14 -04:30

32 lines
694 B
Prolog

include(qcma_common.pri)
unix:!macx:QT += dbus
TARGET = qcma_cli
SOURCES += \
src/cli/main_cli.cpp \
src/cli/singlecoreapplication.cpp \
src/cli/headlessmanager.cpp
HEADERS += \
src/cli/singlecoreapplication.h \
src/cli/headlessmanager.h
# Linux-only config
unix:!macx {
target.path = $$BINDIR
INSTALLS += target
}
# Create the introspection XML
QT5_SUFFIX {
system(qdbuscpp2xml-qt5 -M -s src/cli/headlessmanager.h -o org.qcma.HeadlessManager.xml)
} else {
system(qdbuscpp2xml -M -s src/cli/headlessmanager.h -o org.qcma.HeadlessManager.xml)
}
# Create the helper class
DBUS_ADAPTORS = org.qcma.HeadlessManager.xml