mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-14 21:23:52 +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
24 lines
442 B
Plaintext
24 lines
442 B
Plaintext
include(../openpilotgcs.pri)
|
|
|
|
win32 {
|
|
DLLDESTDIR = $$GCS_APP_PATH
|
|
}
|
|
|
|
DESTDIR = $$GCS_LIBRARY_PATH
|
|
|
|
include(rpath.pri)
|
|
|
|
TARGET = $$qtLibraryTarget($$TARGET)
|
|
|
|
contains(QT_CONFIG, reduce_exports):CONFIG += hGCS_symbols
|
|
|
|
!macx {
|
|
win32 {
|
|
target.path = /bin
|
|
target.files = $$DESTDIR/$${TARGET}.dll
|
|
} else {
|
|
target.path = /$$GCS_LIBRARY_BASENAME/openpilotgcs
|
|
}
|
|
INSTALLS += target
|
|
}
|