mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
include(../openpilotgcs.pri)
|
|
|
|
isEmpty(PROVIDER) {
|
|
PROVIDER = OpenPilot
|
|
}
|
|
|
|
DESTDIR = $$GCS_PLUGIN_PATH/$$PROVIDER
|
|
LIBS += -L$$DESTDIR
|
|
INCLUDEPATH += $$GCS_SOURCE_TREE/src/plugins
|
|
DEPENDPATH += $$GCS_SOURCE_TREE/src/plugins
|
|
|
|
# copy the plugin spec
|
|
isEmpty(TARGET) {
|
|
error("qtcreatorplugin.pri: You must provide a TARGET")
|
|
}
|
|
|
|
PLUGINSPECS = $${_PRO_FILE_PWD_}/$${TARGET}.pluginspec
|
|
copy2build.input = PLUGINSPECS
|
|
copy2build.output = $$DESTDIR/${QMAKE_FUNC_FILE_IN_stripSrcDir}
|
|
isEmpty(vcproj):copy2build.variable_out = PRE_TARGETDEPS
|
|
copy2build.commands = $$QMAKE_COPY ${QMAKE_FILE_IN} ${QMAKE_FILE_OUT}
|
|
copy2build.name = COPY ${QMAKE_FILE_IN}
|
|
copy2build.CONFIG += no_link
|
|
QMAKE_EXTRA_COMPILERS += copy2build
|
|
|
|
TARGET = $$qtLibraryName($$TARGET)
|
|
|
|
macx {
|
|
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../Plugins/$${PROVIDER}/
|
|
} else:linux-* {
|
|
#do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
|
|
QMAKE_RPATHDIR += \$\$ORIGIN
|
|
QMAKE_RPATHDIR += \$\$ORIGIN/..
|
|
QMAKE_RPATHDIR += \$\$ORIGIN/../..
|
|
GCS_PLUGIN_RPATH = $$join(QMAKE_RPATHDIR, ":")
|
|
QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${GCS_PLUGIN_RPATH}\'
|
|
QMAKE_RPATHDIR =
|
|
}
|
|
|
|
|
|
contains(QT_CONFIG, reduce_exports):CONFIG += hGCS_symbols
|
|
|
|
CONFIG += plugin plugin_with_soname
|
|
|
|
!macx {
|
|
target.path = /$$GCS_LIBRARY_BASENAME/opnepilotgcs/plugins/$$PROVIDER
|
|
pluginspec.files += $${TARGET}.pluginspec
|
|
pluginspec.path = /$$GCS_LIBRARY_BASENAME/openpilotgcs/plugins/$$PROVIDER
|
|
INSTALLS += target pluginspec
|
|
}
|