1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-12 20:08:48 +01:00
LibrePilot/ground/openpilotgcs/src/openpilotgcslibrary.pri

28 lines
642 B
Plaintext
Raw Normal View History

2013-04-05 22:46:56 +02:00
include(../openpilotgcs.pri)
win32 {
DLLDESTDIR = $$GCS_APP_PATH
}
DESTDIR = $$GCS_LIBRARY_PATH
TARGET = $$qtLibraryName($$TARGET)
contains(QT_CONFIG, reduce_exports):CONFIG += hGCS_symbols
macx {
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../Plugins/
} else
2013-04-05 22:46:56 +02:00
win32 {
target.path = /bin
target.files = $$DESTDIR/$${TARGET}.dll
} else {
QMAKE_RPATHDIR = \'\$$ORIGIN\'
QMAKE_RPATHDIR += \'\$$ORIGIN\'/$$relative_path($$GCS_QT_LIBRARY_PATH, $$GCS_LIBRARY_PATH)
include(rpath.pri)
2013-04-05 22:46:56 +02:00
target.path = /$$GCS_LIBRARY_BASENAME/openpilotgcs
}
INSTALLS += target
}