summaryrefslogtreecommitdiffstats
path: root/util/cmake/configurejson2cmake.py
diff options
context:
space:
mode:
authorAlbert Astals Cid <[email protected]>2019-02-12 09:57:53 +0100
committerAlbert Astals Cid <[email protected]>2019-02-12 09:21:46 +0000
commitf6a830095fbb607307541305a03da663bfb82cf3 (patch)
treef88efd5dd2797883692566f8f9b32e1b0e265ba2 /util/cmake/configurejson2cmake.py
parent3882e9ea09ec9062fd3c711ae6caadb69b67c752 (diff)
cmake: blacklist xlib test, we can just use X11_FOUND
Change-Id: Ic733c42e11b00fa8bf107f460a0596aeb10ac37b Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'util/cmake/configurejson2cmake.py')
-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 d24a3d4b5e9..6e6c402b079 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -187,6 +187,7 @@ def map_tests(test: str) -> str:
'reduce_exports': 'CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY',
'libinput_axis_api': 'ON',
+ "xlib": "X11_FOUND",
}
if test in testmap:
return testmap.get(test, None)
@@ -550,6 +551,7 @@ def parseTest(ctx, test, data, cm_fh):
'separate_debug_info', # FIXME: see if cmake can do this
'gc_binaries',
'libinput_axis_api',
+ 'xlib',
}
if test in skip_tests: