summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals.cid@kdab.com>2019-06-04 15:55:41 +0200
committerAlbert Astals Cid <albert.astals.cid@kdab.com>2019-06-05 09:10:51 +0000
commitbfa209dfa557e7c30d654add09f5c8f97cfc2492 (patch)
treee3bdc19f60d742ee810eabffbab5b90a4a5de2e1 /util
parentfecd9d90daa22b33c40a709da21cef62bfa44a15 (diff)
cmake: build with exceptions disabled by default
Only re-enable exceptions for the modules that do CONFIG+=exceptions in qmake Change-Id: I9f19078adbdc1b8fa3d4102fb51a099e7e35522e Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index fcf9b1060c..bd26e5782a 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1545,6 +1545,9 @@ def write_main_part(cm_fh: typing.IO[str], name: str, typename: str,
# Evaluate total condition of all scopes:
recursive_evaluate_scope(scope)
+ if 'exceptions' in scope.get('CONFIG'):
+ extra_lines.append('EXCEPTIONS')
+
# Get a flat list of all scopes but the main one:
scopes = flatten_scopes(scope)
total_scopes = len(scopes)