2010-02-01 15:10:06 +01:00
|
|
|
include(../../openpilotgcs.pri)
|
|
|
|
include(../shared/qtsingleapplication/qtsingleapplication.pri)
|
|
|
|
|
|
|
|
TEMPLATE = app
|
2010-02-04 00:43:40 +01:00
|
|
|
TARGET = $$GCS_APP_TARGET
|
|
|
|
DESTDIR = $$GCS_APP_PATH
|
2010-02-01 15:10:06 +01:00
|
|
|
|
|
|
|
SOURCES += main.cpp
|
|
|
|
|
|
|
|
include(../rpath.pri)
|
|
|
|
|
|
|
|
win32 {
|
2010-04-10 18:14:29 +02:00
|
|
|
CONFIG(debug, debug|release):LIBS *= -lExtensionSystemd -lAggregationd -lQExtSerialPortd
|
|
|
|
else:LIBS *= -lExtensionSystem -lAggregation -lQExtSerialPort
|
2010-02-01 15:10:06 +01:00
|
|
|
|
|
|
|
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
|