diff options
author | Marc Mutz <marc.mutz@kdab.com> | 2019-05-23 13:55:07 +0200 |
---|---|---|
committer | Marc Mutz <marc.mutz@kdab.com> | 2019-07-03 14:48:37 +0200 |
commit | f70905448f612f52d4c3034faee61fc103b9eb7c (patch) | |
tree | bfee180ce6cecf4534927b761b5da322778d4a96 /.qmake.conf | |
parent | f99bbfb9ea7a7c96b2fbb7aee2d1d1a9056ca4e7 (diff) | |
download | qtbase-f70905448f612f52d4c3034faee61fc103b9eb7c.tar.gz |
Add QT_NO_JAVA_STYLE_ITERATORS and mark QtBase free of it
... except for tests, which manually undefine the macro.
Like QT_NO_FOREACH, this is a technical way to keep JSI-free
modules JSI-free going forward.
Change-Id: Icf1342da00a700f42f9e32a253d1cdb94c38dd7e
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to '.qmake.conf')
-rw-r--r-- | .qmake.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.qmake.conf b/.qmake.conf index 08e1a4723c..5c64c10981 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -1,6 +1,8 @@ load(qt_build_config) CONFIG += warning_clean +DEFINES += QT_NO_JAVA_STYLE_ITERATORS + QT_SOURCE_TREE = $$PWD QT_BUILD_TREE = $$shadowed($$PWD) |