mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-12 20:08:48 +01:00
7195862d77
This will allow us to build a parent project for qt-creator that sits above both openpilotgcs and uavobjgenerator so that we can build both projects at the same time. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
40 lines
1.3 KiB
Prolog
40 lines
1.3 KiB
Prolog
TEMPLATE = lib
|
|
TARGET = OPMapGadget
|
|
include(../../openpilotgcsplugin.pri)
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
include(../../libs/opmapcontrol/opmapcontrol.pri)
|
|
include(../../plugins/uavobjects/uavobjects.pri)
|
|
include(../../plugins/uavtalk/uavtalk.pri)
|
|
include(../../libs/utils/utils.pri)
|
|
HEADERS += opmapplugin.h \
|
|
opmapgadgetoptionspage.h \
|
|
opmapgadgetfactory.h \
|
|
opmapgadgetconfiguration.h \
|
|
opmapgadget.h \
|
|
opmapgadgetwidget.h \
|
|
# opmap_waypointeditor_dialog.h \
|
|
# opmap_edit_waypoint_dialog.h \
|
|
opmap_zoom_slider_widget.h \
|
|
opmap_statusbar_widget.h \
|
|
opmap_overlay_widget.h
|
|
SOURCES += opmapplugin.cpp \
|
|
opmapgadgetwidget.cpp \
|
|
opmapgadgetoptionspage.cpp \
|
|
opmapgadgetfactory.cpp \
|
|
opmapgadgetconfiguration.cpp \
|
|
opmapgadget.cpp \
|
|
# opmap_waypointeditor_dialog.cpp \
|
|
# opmap_edit_waypoint_dialog.cpp \
|
|
opmap_zoom_slider_widget.cpp \
|
|
opmap_statusbar_widget.cpp \
|
|
opmap_overlay_widget.cpp
|
|
OTHER_FILES += OPMapGadget.pluginspec
|
|
FORMS += opmapgadgetoptionspage.ui \
|
|
opmap_widget.ui \
|
|
# opmap_waypointeditor_dialog.ui \
|
|
# opmap_edit_waypoint_dialog.ui \
|
|
opmap_zoom_slider_widget.ui \
|
|
opmap_statusbar_widget.ui \
|
|
opmap_overlay_widget.ui
|
|
RESOURCES += opmap.qrc
|