diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-19 22:08:58 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-19 14:05:23 -0700 |
commit | 95bfd3af29e6fab28f9be19da54f41cdd47cf121 (patch) | |
tree | c8ae6a097c66aa17b20445888c03820ac987deac /packaging | |
parent | 090eb1ee34b28cc0332b92ea8c8dc173e52fc0c4 (diff) | |
download | subsurface-95bfd3af29e6fab28f9be19da54f41cdd47cf121.tar.gz |
iOS, supress warnings.
Changed .pro file to supress warnings
clang does not allow all of the issued warnings to be
supressed with -Wno-foo, so instead doing -w
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/ios/Subsurface-mobile/Subsurface-mobile.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro b/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro index 4e12db34b..47d4b7629 100644 --- a/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile/Subsurface-mobile.pro @@ -216,6 +216,10 @@ include(deployment.pri) include(../../../mobile-widgets/qml/kirigami/kirigami.pri) +# Supress some warnings +QMAKE_CXXFLAGS += -w +QMAKE_CFLAGS += -w + ios { QMAKE_ASSET_CATALOGS += ../storeIcon.xcassets app_launch_images.files = ../SubsurfaceMobileLaunch.xib $$files(../SubsurfaceMobileLaunchImage*.png) |