2018-05-20 10:57:14 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
QT += qml quick quickcontrols2 widgets positioning concurrent svg bluetooth
|
|
|
|
|
|
|
|
DEFINES += SUBSURFACE_MOBILE BT_SUPPORT BLE_SUPPORT
|
|
|
|
|
|
|
|
CONFIG += c++11
|
|
|
|
|
2020-02-16 23:56:57 +00:00
|
|
|
QMAKE_TARGET_BUNDLE_PREFIX = org.subsurface-divelog
|
|
|
|
QMAKE_BUNDLE = subsurface-mobile
|
|
|
|
|
2019-12-21 13:51:23 +00:00
|
|
|
CONFIG += qtquickcompiler
|
|
|
|
QTQUICK_COMPILER_SKIPPED_RESOURCES +=
|
|
|
|
|
2018-05-20 10:57:14 +00:00
|
|
|
SOURCES += ../../subsurface-mobile-main.cpp \
|
2018-07-11 10:54:00 +00:00
|
|
|
../../subsurface-helper.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../map-widget/qmlmapwidgethelper.cpp \
|
2019-11-14 20:38:30 +00:00
|
|
|
../../commands/command_base.cpp \
|
|
|
|
../../commands/command.cpp \
|
|
|
|
../../commands/command_divelist.cpp \
|
|
|
|
../../commands/command_divesite.cpp \
|
|
|
|
../../commands/command_edit.cpp \
|
|
|
|
../../commands/command_edit_trip.cpp \
|
2020-04-14 20:07:00 +00:00
|
|
|
../../commands/command_pictures.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/cloudstorage.cpp \
|
|
|
|
../../core/configuredivecomputerthreads.cpp \
|
|
|
|
../../core/devicedetails.cpp \
|
|
|
|
../../core/gpslocation.cpp \
|
|
|
|
../../core/imagedownloader.cpp \
|
|
|
|
../../core/downloadfromdcthread.cpp \
|
|
|
|
../../core/qtserialbluetooth.cpp \
|
|
|
|
../../core/plannernotes.c \
|
|
|
|
../../core/uemis-downloader.c \
|
2019-05-10 17:51:43 +00:00
|
|
|
../../core/applicationstate.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/qthelper.cpp \
|
|
|
|
../../core/checkcloudconnection.cpp \
|
|
|
|
../../core/color.cpp \
|
|
|
|
../../core/configuredivecomputer.cpp \
|
|
|
|
../../core/divelogexportlogic.cpp \
|
|
|
|
../../core/divesitehelpers.cpp \
|
|
|
|
../../core/errorhelper.c \
|
|
|
|
../../core/exif.cpp \
|
|
|
|
../../core/format.cpp \
|
|
|
|
../../core/gettextfromc.cpp \
|
|
|
|
../../core/metrics.cpp \
|
|
|
|
../../core/qt-init.cpp \
|
|
|
|
../../core/subsurfacesysinfo.cpp \
|
|
|
|
../../core/windowtitleupdate.cpp \
|
|
|
|
../../core/file.c \
|
2020-02-18 15:25:01 +00:00
|
|
|
../../core/fulltext.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/subsurfacestartup.c \
|
|
|
|
../../core/ios.cpp \
|
|
|
|
../../core/profile.c \
|
2020-09-13 17:08:41 +00:00
|
|
|
../../core/device.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/dive.c \
|
2020-02-18 15:25:01 +00:00
|
|
|
../../core/divefilter.cpp \
|
filter: add filter constraint object to the core
Adds a filter constraint object to the core, which represents one
constraint the user can filter dives with. The plan is to write these
constraints to the XML and git logs. Therefore, this code is written
in C-style except when it comes to handling strings and dates, which
is just too painful in plain C.
There is one pointer to QStringList in the class, though when compiled
with C, this is simply transformed into a pointer to void. Granted,
that smells of an ugly hack. However it's more pragmatic than
self-flaggelation with C string and list handling.
A filter constraint is supposed to be a very general thing, which can
filter for strings, multiple-choice lists, numerical ranges and date
ranges.
Range constraints have a range mode: less-or-equal, greater-or-equal
or in-range. Text constraints have a string mode: startswith, substring
or exact.
All the data are accessed via setter and getter functions for
at least basic levels of isolation, despite being written with
a C-interface in mind.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2020-05-13 13:34:25 +00:00
|
|
|
../../core/filterconstraint.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/divelist.c \
|
|
|
|
../../core/gas-model.c \
|
|
|
|
../../core/gaspressures.c \
|
|
|
|
../../core/git-access.c \
|
|
|
|
../../core/liquivision.c \
|
|
|
|
../../core/load-git.c \
|
|
|
|
../../core/parse-xml.c \
|
|
|
|
../../core/parse.c \
|
2020-04-10 07:42:14 +00:00
|
|
|
../../core/picture.c \
|
2020-04-17 14:49:15 +00:00
|
|
|
../../core/pictureobj.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/import-suunto.c \
|
|
|
|
../../core/import-shearwater.c \
|
2020-07-17 01:40:46 +00:00
|
|
|
../../core/import-seac.c \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/import-cobalt.c \
|
|
|
|
../../core/import-divinglog.c \
|
|
|
|
../../core/import-csv.c \
|
|
|
|
../../core/save-html.c \
|
|
|
|
../../core/statistics.c \
|
|
|
|
../../core/worldmap-save.c \
|
|
|
|
../../core/libdivecomputer.c \
|
|
|
|
../../core/version.c \
|
|
|
|
../../core/save-git.c \
|
|
|
|
../../core/datatrak.c \
|
|
|
|
../../core/ostctools.c \
|
|
|
|
../../core/planner.c \
|
|
|
|
../../core/save-xml.c \
|
|
|
|
../../core/cochran.c \
|
|
|
|
../../core/deco.c \
|
|
|
|
../../core/divesite.c \
|
|
|
|
../../core/equipment.c \
|
2019-06-04 11:52:48 +00:00
|
|
|
../../core/gas.c \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/membuffer.c \
|
2019-11-24 14:02:34 +00:00
|
|
|
../../core/selection.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/sha1.c \
|
|
|
|
../../core/strtod.c \
|
2019-05-30 16:29:36 +00:00
|
|
|
../../core/tag.c \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/taxonomy.c \
|
|
|
|
../../core/time.c \
|
2019-05-31 14:09:14 +00:00
|
|
|
../../core/trip.c \
|
2019-06-04 07:05:17 +00:00
|
|
|
../../core/units.c \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/uemis.c \
|
|
|
|
../../core/btdiscovery.cpp \
|
|
|
|
../../core/connectionlistmodel.cpp \
|
|
|
|
../../core/qt-ble.cpp \
|
2019-12-08 10:50:19 +00:00
|
|
|
../../core/uploadDiveShare.cpp \
|
2019-11-30 19:14:32 +00:00
|
|
|
../../core/uploadDiveLogsDE.cpp \
|
2019-11-20 17:12:20 +00:00
|
|
|
../../core/save-profiledata.c \
|
2018-06-16 14:03:31 +00:00
|
|
|
../../core/settings/qPref.cpp \
|
2018-07-12 19:01:31 +00:00
|
|
|
../../core/settings/qPrefCloudStorage.cpp \
|
2018-06-15 08:53:42 +00:00
|
|
|
../../core/settings/qPrefDisplay.cpp \
|
2018-07-15 16:15:40 +00:00
|
|
|
../../core/settings/qPrefDiveComputer.cpp \
|
2018-08-01 15:14:04 +00:00
|
|
|
../../core/settings/qPrefDivePlanner.cpp \
|
2018-08-12 15:57:45 +00:00
|
|
|
../../core/settings/qPrefGeneral.cpp \
|
2018-08-06 17:25:06 +00:00
|
|
|
../../core/settings/qPrefGeocoding.cpp \
|
2018-08-06 17:39:35 +00:00
|
|
|
../../core/settings/qPrefLanguage.cpp \
|
2018-08-05 13:59:28 +00:00
|
|
|
../../core/settings/qPrefLocationService.cpp \
|
2018-08-10 19:18:40 +00:00
|
|
|
../../core/settings/qPrefPartialPressureGas.cpp \
|
2018-07-17 13:22:51 +00:00
|
|
|
../../core/settings/qPrefPrivate.cpp \
|
2018-07-27 08:25:43 +00:00
|
|
|
../../core/settings/qPrefProxy.cpp \
|
2018-08-04 10:02:29 +00:00
|
|
|
../../core/settings/qPrefTechnicalDetails.cpp \
|
2018-07-31 13:04:12 +00:00
|
|
|
../../core/settings/qPrefUnit.cpp \
|
2019-12-12 08:28:04 +00:00
|
|
|
../../core/settings/qPrefEquipment.cpp \
|
|
|
|
../../core/settings/qPrefLog.cpp \
|
|
|
|
../../core/settings/qPrefMedia.cpp \
|
2018-08-03 17:24:53 +00:00
|
|
|
../../core/settings/qPrefUpdateManager.cpp \
|
2020-02-03 18:33:06 +00:00
|
|
|
../../core/subsurface-qt/cylinderobjecthelper.cpp \
|
|
|
|
../../core/subsurface-qt/diveobjecthelper.cpp \
|
2019-04-10 18:09:39 +00:00
|
|
|
../../core/subsurface-qt/DiveListNotifier.cpp \
|
2019-12-14 20:56:31 +00:00
|
|
|
../../backend-shared/exportfuncs.cpp \
|
2019-12-14 22:12:26 +00:00
|
|
|
../../backend-shared/plannershared.cpp \
|
2020-01-04 08:26:09 +00:00
|
|
|
../../mobile-widgets/qmlinterface.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../mobile-widgets/qmlmanager.cpp \
|
2019-02-11 15:13:01 +00:00
|
|
|
../../mobile-widgets/themeinterface.cpp \
|
2020-02-08 11:06:57 +00:00
|
|
|
../../qt-models/divesummarymodel.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../qt-models/diveplotdatamodel.cpp \
|
|
|
|
../../qt-models/gpslistmodel.cpp \
|
|
|
|
../../qt-models/completionmodels.cpp \
|
|
|
|
../../qt-models/divelocationmodel.cpp \
|
|
|
|
../../qt-models/maplocationmodel.cpp \
|
|
|
|
../../qt-models/diveimportedmodel.cpp \
|
|
|
|
../../qt-models/messagehandlermodel.cpp \
|
2019-12-16 09:08:40 +00:00
|
|
|
../../qt-models/diveplannermodel.cpp \
|
2019-11-11 20:16:48 +00:00
|
|
|
../../qt-models/divetripmodel.cpp \
|
|
|
|
../../qt-models/mobilelistmodel.cpp \
|
2019-12-16 09:08:40 +00:00
|
|
|
../../qt-models/cylindermodel.cpp \
|
|
|
|
../../qt-models/cleanertablemodel.cpp \
|
|
|
|
../../qt-models/tankinfomodel.cpp \
|
|
|
|
../../qt-models/models.cpp \
|
2019-12-11 09:37:15 +00:00
|
|
|
../../qt-models/weightsysteminfomodel.cpp \
|
2020-05-15 15:05:34 +00:00
|
|
|
../../qt-models/filterconstraintmodel.cpp \
|
2018-06-08 10:56:23 +00:00
|
|
|
../../profile-widget/qmlprofile.cpp \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../profile-widget/divecartesianaxis.cpp \
|
|
|
|
../../profile-widget/diveeventitem.cpp \
|
|
|
|
../../profile-widget/diveprofileitem.cpp \
|
|
|
|
../../profile-widget/profilewidget2.cpp \
|
|
|
|
../../profile-widget/ruleritem.cpp \
|
|
|
|
../../profile-widget/animationfunctions.cpp \
|
|
|
|
../../profile-widget/divepixmapitem.cpp \
|
|
|
|
../../profile-widget/divetooltipitem.cpp \
|
|
|
|
../../profile-widget/tankitem.cpp \
|
|
|
|
../../profile-widget/divelineitem.cpp \
|
|
|
|
../../profile-widget/diverectitem.cpp \
|
|
|
|
../../profile-widget/divetextitem.cpp
|
|
|
|
|
2018-06-20 13:53:59 +00:00
|
|
|
RESOURCES += ./qml.qrc \
|
|
|
|
../../mobile-widgets/qml/mobile-resources.qrc \
|
|
|
|
../../map-widget/qml/map-widget.qrc \
|
|
|
|
./translations.qrc
|
2018-05-20 10:57:14 +00:00
|
|
|
|
2019-12-16 13:44:44 +00:00
|
|
|
LIBS += ../../../../install-root/ios/lib/libdivecomputer.a \
|
|
|
|
../../../../install-root/ios/lib/libgit2.a \
|
|
|
|
../../../../install-root/ios/lib/libzip.a \
|
|
|
|
../../../../install-root/ios/lib/libxslt.a \
|
2019-12-17 10:47:21 +00:00
|
|
|
../../../../googlemaps/build-ios/libqtgeoservices_googlemaps.a \
|
2018-05-20 10:57:14 +00:00
|
|
|
-liconv \
|
|
|
|
-lsqlite3 \
|
|
|
|
-lxml2
|
|
|
|
|
2019-12-16 13:44:44 +00:00
|
|
|
INCLUDEPATH += ../../../install-root/ios/include/ \
|
|
|
|
../../../install-root/lib/libzip/include \
|
|
|
|
../../../install-root/ios/include/libxstl \
|
|
|
|
../../../install-root/ios/include/libexstl \
|
|
|
|
../../../install-root/ios/include/openssl \
|
2018-05-20 10:57:14 +00:00
|
|
|
../.. \
|
|
|
|
../../core \
|
|
|
|
../../mobile-widgets/qml/kirigami/src/libkirigami \
|
|
|
|
/usr/include/libxml2
|
|
|
|
|
|
|
|
HEADERS += \
|
2019-11-14 20:38:30 +00:00
|
|
|
../../commands/command_base.h \
|
|
|
|
../../commands/command.h \
|
|
|
|
../../commands/command_divelist.h \
|
|
|
|
../../commands/command_divesite.h \
|
|
|
|
../../commands/command_edit.h \
|
|
|
|
../../commands/command_edit_trip.h \
|
2020-04-14 20:07:00 +00:00
|
|
|
../../commands/command_pictures.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/libdivecomputer.h \
|
|
|
|
../../core/cloudstorage.h \
|
|
|
|
../../core/configuredivecomputerthreads.h \
|
|
|
|
../../core/device.h \
|
|
|
|
../../core/devicedetails.h \
|
|
|
|
../../core/dive.h \
|
|
|
|
../../core/git-access.h \
|
|
|
|
../../core/gpslocation.h \
|
|
|
|
../../core/imagedownloader.h \
|
|
|
|
../../core/pref.h \
|
|
|
|
../../core/profile.h \
|
|
|
|
../../core/qthelper.h \
|
|
|
|
../../core/save-html.h \
|
|
|
|
../../core/statistics.h \
|
|
|
|
../../core/units.h \
|
|
|
|
../../core/version.h \
|
2020-04-10 07:42:14 +00:00
|
|
|
../../core/picture.h \
|
2020-04-17 14:49:15 +00:00
|
|
|
../../core/pictureobj.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/planner.h \
|
|
|
|
../../core/divesite.h \
|
|
|
|
../../core/checkcloudconnection.h \
|
|
|
|
../../core/cochran.h \
|
|
|
|
../../core/color.h \
|
|
|
|
../../core/configuredivecomputer.h \
|
|
|
|
../../core/datatrak.h \
|
|
|
|
../../core/deco.h \
|
|
|
|
../../core/display.h \
|
2020-02-18 15:25:01 +00:00
|
|
|
../../core/divefilter.h \
|
filter: add filter constraint object to the core
Adds a filter constraint object to the core, which represents one
constraint the user can filter dives with. The plan is to write these
constraints to the XML and git logs. Therefore, this code is written
in C-style except when it comes to handling strings and dates, which
is just too painful in plain C.
There is one pointer to QStringList in the class, though when compiled
with C, this is simply transformed into a pointer to void. Granted,
that smells of an ugly hack. However it's more pragmatic than
self-flaggelation with C string and list handling.
A filter constraint is supposed to be a very general thing, which can
filter for strings, multiple-choice lists, numerical ranges and date
ranges.
Range constraints have a range mode: less-or-equal, greater-or-equal
or in-range. Text constraints have a string mode: startswith, substring
or exact.
All the data are accessed via setter and getter functions for
at least basic levels of isolation, despite being written with
a C-interface in mind.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2020-05-13 13:34:25 +00:00
|
|
|
../../core/filterconstraint.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/divelist.h \
|
|
|
|
../../core/divelogexportlogic.h \
|
|
|
|
../../core/divesitehelpers.h \
|
|
|
|
../../core/exif.h \
|
|
|
|
../../core/file.h \
|
2020-02-18 15:25:01 +00:00
|
|
|
../../core/fulltext.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/gaspressures.h \
|
|
|
|
../../core/gettext.h \
|
|
|
|
../../core/gettextfromc.h \
|
|
|
|
../../core/membuffer.h \
|
|
|
|
../../core/metrics.h \
|
|
|
|
../../core/qt-gui.h \
|
2019-11-24 14:02:34 +00:00
|
|
|
../../core/selection.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../core/sha1.h \
|
|
|
|
../../core/strndup.h \
|
|
|
|
../../core/subsurfacestartup.h \
|
|
|
|
../../core/subsurfacesysinfo.h \
|
|
|
|
../../core/taxonomy.h \
|
|
|
|
../../core/uemis.h \
|
|
|
|
../../core/webservice.h \
|
|
|
|
../../core/windowtitleupdate.h \
|
|
|
|
../../core/worldmap-options.h \
|
|
|
|
../../core/worldmap-save.h \
|
|
|
|
../../core/downloadfromdcthread.h \
|
|
|
|
../../core/btdiscovery.h \
|
|
|
|
../../core/connectionlistmodel.h \
|
|
|
|
../../core/qt-ble.h \
|
2019-11-20 17:12:20 +00:00
|
|
|
../../core/save-profiledata.h \
|
2019-12-08 10:50:19 +00:00
|
|
|
../../core/uploadDiveShare.h \
|
2019-11-30 19:14:32 +00:00
|
|
|
../../core/uploadDiveLogsDE.h \
|
2018-06-16 14:03:31 +00:00
|
|
|
../../core/settings/qPref.h \
|
2018-07-12 19:01:31 +00:00
|
|
|
../../core/settings/qPrefCloudStorage.h \
|
2018-06-15 08:53:42 +00:00
|
|
|
../../core/settings/qPrefDisplay.h \
|
2018-07-15 16:15:40 +00:00
|
|
|
../../core/settings/qPrefDiveComputer.h \
|
2018-08-01 15:14:04 +00:00
|
|
|
../../core/settings/qPrefDivePlanner.h \
|
2018-08-12 15:57:45 +00:00
|
|
|
../../core/settings/qPrefGeneral.h \
|
2018-08-06 17:25:06 +00:00
|
|
|
../../core/settings/qPrefGeocoding.h \
|
2018-08-06 17:39:35 +00:00
|
|
|
../../core/settings/qPrefLanguage.h \
|
2018-08-05 13:59:28 +00:00
|
|
|
../../core/settings/qPrefLocationService.h \
|
2018-08-10 19:18:40 +00:00
|
|
|
../../core/settings/qPrefPartialPressureGas.h \
|
2018-07-17 13:22:51 +00:00
|
|
|
../../core/settings/qPrefPrivate.h \
|
2018-07-27 08:25:43 +00:00
|
|
|
../../core/settings/qPrefProxy.h \
|
2018-08-04 10:02:29 +00:00
|
|
|
../../core/settings/qPrefTechnicalDetails.h \
|
2018-07-31 13:04:12 +00:00
|
|
|
../../core/settings/qPrefUnit.h \
|
2019-12-12 08:28:04 +00:00
|
|
|
../../core/settings/qPrefEquipment.h \
|
|
|
|
../../core/settings/qPrefLog.h \
|
|
|
|
../../core/settings/qPrefMedia.h \
|
2018-08-03 17:24:53 +00:00
|
|
|
../../core/settings/qPrefUpdateManager.h \
|
2020-02-03 18:33:06 +00:00
|
|
|
../../core/subsurface-qt/cylinderobjecthelper.h \
|
|
|
|
../../core/subsurface-qt/diveobjecthelper.h \
|
|
|
|
../../core/subsurface-qt/divelistnotifier.h \
|
2019-12-14 20:56:31 +00:00
|
|
|
../../backend-shared/exportfuncs.h \
|
2019-12-14 22:12:26 +00:00
|
|
|
../../backend-shared/plannershared.h \
|
2020-01-04 08:26:09 +00:00
|
|
|
../../mobile-widgets/qmlinterface.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../mobile-widgets/qmlmanager.h \
|
2019-02-11 15:13:01 +00:00
|
|
|
../../mobile-widgets/themeinterface.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../map-widget/qmlmapwidgethelper.h \
|
2020-02-08 11:06:57 +00:00
|
|
|
../../qt-models/divesummarymodel.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../qt-models/diveplotdatamodel.h \
|
|
|
|
../../qt-models/gpslistmodel.h \
|
|
|
|
../../qt-models/divelocationmodel.h \
|
|
|
|
../../qt-models/completionmodels.h \
|
|
|
|
../../qt-models/weightsysteminfomodel.h \
|
|
|
|
../../qt-models/maplocationmodel.h \
|
|
|
|
../../qt-models/diveimportedmodel.h \
|
|
|
|
../../qt-models/messagehandlermodel.h \
|
2019-12-16 09:08:40 +00:00
|
|
|
../../qt-models/diveplannermodel.h \
|
2019-11-11 20:16:48 +00:00
|
|
|
../../qt-models/divetripmodel.h \
|
|
|
|
../../qt-models/mobilelistmodel.h \
|
2019-12-16 09:08:40 +00:00
|
|
|
../../qt-models/cylindermodel.h \
|
|
|
|
../../qt-models/cleanertablemodel.h \
|
|
|
|
../../qt-models/tankinfomodel.h \
|
|
|
|
../../qt-models/models.h \
|
2019-12-11 09:37:15 +00:00
|
|
|
../../qt-models/weightsysteminfomodel.h \
|
2020-05-15 15:05:34 +00:00
|
|
|
../../qt-models/filterconstraintmodel.h \
|
2018-06-08 10:56:23 +00:00
|
|
|
../../profile-widget/qmlprofile.h \
|
2018-05-20 10:57:14 +00:00
|
|
|
../../profile-widget/diveprofileitem.h \
|
|
|
|
../../profile-widget/profilewidget2.h \
|
|
|
|
../../profile-widget/ruleritem.h \
|
|
|
|
../../profile-widget/diveeventitem.h \
|
|
|
|
../../profile-widget/divetooltipitem.h \
|
|
|
|
../../profile-widget/tankitem.h \
|
|
|
|
../../profile-widget/animationfunctions.h \
|
|
|
|
../../profile-widget/divecartesianaxis.h \
|
|
|
|
../../profile-widget/divelineitem.h \
|
|
|
|
../../profile-widget/divepixmapitem.h \
|
|
|
|
../../profile-widget/diverectitem.h \
|
|
|
|
../../profile-widget/divetextitem.h
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
|
|
QML_IMPORT_PATH =
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
include(./deployment.pri)
|
|
|
|
|
|
|
|
include(../../mobile-widgets/qml/kirigami/kirigami.pri)
|
|
|
|
|
|
|
|
# Supress some warnings
|
2020-04-01 16:32:50 +00:00
|
|
|
QMAKE_CXXFLAGS += -Wno-shorten-64-to-32 -Wno-missing-field-initializers -Wno-inconsistent-missing-override
|
2018-05-21 06:12:40 +00:00
|
|
|
QMAKE_CFLAGS += -Wno-shorten-64-to-32 -Wno-missing-field-initializers
|
2018-05-20 10:57:14 +00:00
|
|
|
|
|
|
|
ios {
|
|
|
|
QMAKE_ASSET_CATALOGS += ./storeIcon.xcassets
|
|
|
|
app_launch_images.files = ./SubsurfaceMobileLaunch.xib $$files(./SubsurfaceMobileLaunchImage*.png)
|
|
|
|
images.files = ../../icons/subsurface-mobile-icon.png
|
|
|
|
QMAKE_BUNDLE_DATA += app_launch_images images
|
|
|
|
QMAKE_INFO_PLIST = ./Info.plist
|
|
|
|
QMAKE_IOS_DEPLOYMENT_TARGET = 10.0
|
|
|
|
}
|