summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-12 10:01:07 +0100
committerAlbert Astals Cid <albert.astals.cid@kdab.com>2019-02-12 09:22:02 +0000
commit2e64ac90d8b71bf1afe4ae4af87096a3888ff3be (patch)
tree70451231d96b4be0601c0a9540431ce3f3f65cb6 /util
parentf6a830095fbb607307541305a03da663bfb82cf3 (diff)
cmake: also write FIXME on the configure.cmake for 'use'
Since most of the times it means we need to link with some other stuff Change-Id: I06262d4403225bca7a5e68d47145fefcf6702e5a Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/configurejson2cmake.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py
index 6e6c402b07..7efeb88522 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -610,6 +610,8 @@ def parseTest(ctx, test, data, cm_fh):
cm_fh.write('"' + sourceCode + '"')
if "qmake" in details:
cm_fh.write("# FIXME: qmake: {}\n".format(details["qmake"]))
+ if "use" in data:
+ cm_fh.write("# FIXME: use: {}\n".format(data["use"]))
cm_fh.write(")\n\n")
elif data["type"] == "x86Simd":