summaryrefslogtreecommitdiffstats
path: root/util/cmake/configurejson2cmake.py
diff options
context:
space:
mode:
authorLeander Beernaert <leander.beernaert@qt.io>2020-04-15 13:57:13 +0200
committerLeander Beernaert <leander.beernaert@qt.io>2020-04-15 14:15:52 +0000
commit812cc76b026108e208bfc8d20fe1daa8168a00eb (patch)
tree41d87dfe26134e0ff0e1a7661432c34ca21575a0 /util/cmake/configurejson2cmake.py
parentbb0a6162608fe932f8534bbe65594c6bf894867a (diff)
CMake: Update pro2cmake and friend to convert QtVirtualkeyboard
Expand $$MODULE_BASE_DIR to ${QT_BUILD_DIR}. Add library mappings for Hunspell. Add test mappings for QtVirtualKeyboard regarding 3rdparty Hunspell and T9Write. Change-Id: Ief007456d0471cbcf9a03d819291edec5f63680f Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util/cmake/configurejson2cmake.py')
-rwxr-xr-xutil/cmake/configurejson2cmake.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py
index 5a77c36b4e..85ac26ec2b 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -127,6 +127,9 @@ def map_tests(test: str) -> Optional[str]:
"libinput_axis_api": "ON",
"xlib": "X11_FOUND",
"wayland-scanner": "WaylandScanner_FOUND",
+ "3rdparty-hunspell": "VKB_HAVE_3RDPARTY_HUNSPELL",
+ "t9write-alphabetic": "VKB_HAVE_T9WRITE_ALPHA",
+ "t9write-cjk": "VKB_HAVE_T9WRITE_CJK",
}
if test in testmap:
return testmap.get(test, None)