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
|
2011-05-29 14:01:20 +02:00
|
|
|
QT += xml
|
2013-01-22 07:16:14 +01:00
|
|
|
SOURCES += main.cpp \
|
|
|
|
gcssplashscreen.cpp
|
2010-02-01 15:10:06 +01:00
|
|
|
include(../rpath.pri)
|
2011-05-29 14:01:20 +02:00
|
|
|
include(../libs/utils/utils.pri)
|
2010-02-01 15:10:06 +01:00
|
|
|
|
2011-08-04 14:44:25 +02:00
|
|
|
LIBS *= -l$$qtLibraryName(ExtensionSystem) -l$$qtLibraryName(Aggregation)
|
2010-02-01 15:10:06 +01:00
|
|
|
|
2011-08-04 14:44:25 +02:00
|
|
|
win32 {
|
2010-02-01 15:10:06 +01:00
|
|
|
RC_FILE = openpilotgcs.rc
|
|
|
|
target.path = /bin
|
|
|
|
INSTALLS += target
|
|
|
|
} else:macx {
|
|
|
|
LIBS += -framework CoreFoundation
|
2010-07-02 21:06:44 +02:00
|
|
|
ICON = openpilotgcs.icns
|
2010-02-01 15:10:06 +01:00
|
|
|
QMAKE_INFO_PLIST = Info.plist
|
|
|
|
FILETYPES.files = profile.icns prifile.icns
|
|
|
|
FILETYPES.path = Contents/Resources
|
|
|
|
QMAKE_BUNDLE_DATA += FILETYPES
|
|
|
|
} else {
|
|
|
|
target.path = /bin
|
|
|
|
INSTALLS += target
|
|
|
|
}
|
|
|
|
|
|
|
|
OTHER_FILES += openpilotgcs.rc
|
2013-01-15 23:22:44 +01:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
appresources.qrc
|
2013-01-22 07:16:14 +01:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
gcssplashscreen.h
|