mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +01:00
36 lines
958 B
Prolog
36 lines
958 B
Prolog
|
include(../../openpilotgcs.pri)
|
||
|
include(../shared/qtsingleapplication/qtsingleapplication.pri)
|
||
|
|
||
|
TEMPLATE = app
|
||
|
TARGET = $$IDE_APP_TARGET
|
||
|
DESTDIR = $$IDE_APP_PATH
|
||
|
|
||
|
SOURCES += main.cpp
|
||
|
|
||
|
include(../rpath.pri)
|
||
|
|
||
|
win32 {
|
||
|
CONFIG(debug, debug|release):LIBS *= -lExtensionSystemd -lAggregationd
|
||
|
else:LIBS *= -lExtensionSystem -lAggregation
|
||
|
|
||
|
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 = qtcreator.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
|