You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
0 B
49 lines
0 B
15 years ago
|
|
||
|
# }
|
||
|
# Include general settings for MAVGround
|
||
|
# necessary as last include to override any non-acceptable settings
|
||
|
# done by the plugins above
|
||
|
QT += svg xml
|
||
|
|
||
|
TEMPLATE = app
|
||
|
TARGET = mavlinkgen
|
||
|
|
||
|
BASEDIR = .
|
||
|
BUILDDIR = build/mavlinkgen
|
||
|
LANGUAGE = C++
|
||
|
|
||
|
CONFIG += release
|
||
|
CONFIG -= debug
|
||
|
|
||
|
OBJECTS_DIR = $$BUILDDIR/obj
|
||
|
MOC_DIR = $$BUILDDIR/moc
|
||
|
UI_HEADERS_DIR = src/ui/generated
|
||
|
|
||
|
macx:DESTDIR = $$BASEDIR/bin/mac
|
||
|
|
||
|
INCLUDEPATH += . \
|
||
|
src \
|
||
|
src/ui \
|
||
|
src/comm \
|
||
|
include/ui \
|
||
|
src/ui/mavlink \
|
||
|
src/standalone/mavlinkgen
|
||
|
|
||
|
# Input
|
||
|
FORMS += src/ui/XMLCommProtocolWidget.ui
|
||
|
|
||
|
HEADERS += src/standalone/mavlinkgen/MAVLinkGen.h \
|
||
|
src/ui/XMLCommProtocolWidget.h \
|
||
|
src/comm/MAVLinkXMLParser.h \
|
||
|
src/ui/mavlink/DomItem.h \
|
||
|
src/ui/mavlink/DomModel.h \
|
||
|
src/comm/MAVLinkSyntaxHighlighter.h
|
||
|
SOURCES += src/standalone/mavlinkgen/main.cc \
|
||
|
src/standalone/mavlinkgen/MAVLinkGen.cc \
|
||
|
src/ui/XMLCommProtocolWidget.cc \
|
||
|
src/ui/mavlink/DomItem.cc \
|
||
|
src/ui/mavlink/DomModel.cc \
|
||
|
src/comm/MAVLinkXMLParser.cc \
|
||
|
src/comm/MAVLinkSyntaxHighlighter.cc
|
||
|
RESOURCES = mavground.qrc
|