mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +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
44 lines
1.0 KiB
Prolog
Executable File
44 lines
1.0 KiB
Prolog
Executable File
TEMPLATE = lib
|
|
TARGET = Uploader
|
|
QT += svg
|
|
include(../../openpilotgcsplugin.pri)
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
include(../../plugins/uavobjects/uavobjects.pri)
|
|
include(../../plugins/uavtalk/uavtalk.pri)
|
|
include(../../plugins/rawhid/rawhid.pri)
|
|
INCLUDEPATH += ../../libs/qextserialport/src
|
|
|
|
HEADERS += uploadergadget.h \
|
|
uploadergadgetconfiguration.h \
|
|
uploadergadgetfactory.h \
|
|
uploadergadgetoptionspage.h \
|
|
uploadergadgetwidget.h \
|
|
uploaderplugin.h \
|
|
op_dfu.h \
|
|
delay.h \
|
|
devicewidget.h \
|
|
SSP/port.h \
|
|
SSP/qssp.h \
|
|
SSP/qsspt.h \
|
|
SSP/common.h
|
|
SOURCES += uploadergadget.cpp \
|
|
uploadergadgetconfiguration.cpp \
|
|
uploadergadgetfactory.cpp \
|
|
uploadergadgetoptionspage.cpp \
|
|
uploadergadgetwidget.cpp \
|
|
uploaderplugin.cpp \
|
|
op_dfu.cpp \
|
|
delay.cpp \
|
|
devicewidget.cpp \
|
|
SSP/port.cpp \
|
|
SSP/qssp.cpp \
|
|
SSP/qsspt.cpp
|
|
OTHER_FILES += Uploader.pluginspec
|
|
|
|
FORMS += \
|
|
uploader.ui \
|
|
devicewidget.ui
|
|
|
|
RESOURCES += \
|
|
uploader.qrc
|