mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-24 13:54:16 +01:00
36 lines
795 B
Prolog
36 lines
795 B
Prolog
TEMPLATE = lib
|
|
TARGET = ExtensionSystem
|
|
DEFINES += EXTENSIONSYSTEM_LIBRARY
|
|
include(../../library.pri)
|
|
include(extensionsystem_dependencies.pri)
|
|
|
|
unix:!macx:!freebsd*:LIBS += -ldl
|
|
|
|
DEFINES += GCS_TEST_DIR=$$shell_quote(\"$$GCS_SOURCE_TREE\")
|
|
|
|
QT += widgets
|
|
|
|
HEADERS += pluginerrorview.h \
|
|
plugindetailsview.h \
|
|
iplugin.h \
|
|
iplugin_p.h \
|
|
extensionsystem_global.h \
|
|
pluginmanager.h \
|
|
pluginmanager_p.h \
|
|
pluginspec.h \
|
|
pluginspec_p.h \
|
|
pluginview.h \
|
|
pluginview_p.h \
|
|
optionsparser.h
|
|
SOURCES += pluginerrorview.cpp \
|
|
plugindetailsview.cpp \
|
|
iplugin.cpp \
|
|
pluginmanager.cpp \
|
|
pluginspec.cpp \
|
|
pluginview.cpp \
|
|
optionsparser.cpp
|
|
FORMS += pluginview.ui \
|
|
pluginerrorview.ui \
|
|
plugindetailsview.ui
|
|
RESOURCES += pluginview.qrc
|