mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-22 12:54:14 +01:00
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
36 lines
997 B
Prolog
36 lines
997 B
Prolog
include(../../openpilotgcs.pri)
|
|
include(../shared/qtsingleapplication/qtsingleapplication.pri)
|
|
|
|
TEMPLATE = app
|
|
TARGET = $$GCS_APP_TARGET
|
|
DESTDIR = $$GCS_APP_PATH
|
|
|
|
SOURCES += main.cpp
|
|
|
|
include(../rpath.pri)
|
|
|
|
win32 {
|
|
CONFIG(debug, debug|release):LIBS *= -lExtensionSystemd -lAggregationd -lQExtSerialPortd
|
|
else:LIBS *= -lExtensionSystem -lAggregation -lQExtSerialPort
|
|
|
|
RC_FILE = openpilotgcs.rc
|
|
target.path = /bin
|
|
INSTALLS += target
|
|
} else:macx {
|
|
CONFIG(debug, debug|release):LIBS *= -lExtensionSystem_debug -lAggregation_debug
|
|
else:LIBS *= -lExtensionSystem -lAggregation
|
|
LIBS += -framework CoreFoundation
|
|
ICON = openpilotgcs.icns
|
|
QMAKE_INFO_PLIST = Info.plist
|
|
FILETYPES.files = profile.icns prifile.icns
|
|
FILETYPES.path = Contents/Resources
|
|
QMAKE_BUNDLE_DATA += FILETYPES
|
|
} else {
|
|
LIBS *= -lExtensionSystem -lAggregation
|
|
|
|
target.path = /bin
|
|
INSTALLS += target
|
|
}
|
|
|
|
OTHER_FILES += openpilotgcs.rc
|