10 meson_version : '>= 0.52.0',
12 pkgconfig = import('pkgconfig')
13 cc = meson.get_compiler('c')
15 dir_libexec = get_option('prefix')/get_option('libexecdir')/'xkbcommon'
19 '-fno-strict-aliasing',
20 '-Wno-unused-parameter',
21 '-Wno-missing-field-initializers',
23 '-Wmissing-declarations',
25 '-Wstrict-prototypes',
26 '-Wmissing-prototypes',
28 '-Wbad-function-cast',
33 '-Wno-documentation-deprecated-sync',
35 add_project_arguments(cc.get_supported_arguments(cflags), language: 'c')
38 # The XKB config root.
39 XKBCONFIGROOT = get_option('xkb-config-root')
40 if XKBCONFIGROOT == ''
41 xkeyboard_config_dep = dependency('xkeyboard-config', required: false)
42 if xkeyboard_config_dep.found()
43 XKBCONFIGROOT = xkeyboard_config_dep.get_variable(pkgconfig: 'xkb_base')
45 XKBCONFIGROOT = get_option('prefix')/get_option('datadir')/'X11'/'xkb'
49 XKBCONFIGEXTRAPATH = get_option('xkb-config-extra-path')
50 if XKBCONFIGEXTRAPATH == ''
51 XKBCONFIGEXTRAPATH = get_option('prefix')/get_option('sysconfdir')/'xkb'
54 # The X locale directory for compose.
55 XLOCALEDIR = get_option('x-locale-root')
57 XLOCALEDIR = get_option('prefix')/get_option('datadir')/'X11'/'locale'
62 configh_data = configuration_data()
63 configh_data.set('EXIT_INVALID_USAGE', '2')
64 configh_data.set_quoted('LIBXKBCOMMON_VERSION', meson.project_version())
65 configh_data.set_quoted('LIBXKBCOMMON_TOOL_PATH', dir_libexec)
66 # Like AC_USE_SYSTEM_EXTENSIONS, what #define to use to get extensions
67 # beyond the base POSIX function set.
68 if host_machine.system() == 'sunos'
69 system_extensions = '__EXTENSIONS__'
71 system_extensions = '_GNU_SOURCE'
73 configh_data.set(system_extensions, 1)
74 system_ext_define = '#define ' + system_extensions
75 configh_data.set_quoted('DFLT_XKB_CONFIG_ROOT', XKBCONFIGROOT)
76 configh_data.set_quoted('DFLT_XKB_CONFIG_EXTRA_PATH', XKBCONFIGEXTRAPATH)
77 configh_data.set_quoted('XLOCALEDIR', XLOCALEDIR)
78 configh_data.set_quoted('DEFAULT_XKB_RULES', get_option('default-rules'))
79 configh_data.set_quoted('DEFAULT_XKB_MODEL', get_option('default-model'))
80 configh_data.set_quoted('DEFAULT_XKB_LAYOUT', get_option('default-layout'))
81 if get_option('default-variant') != ''
82 configh_data.set_quoted('DEFAULT_XKB_VARIANT', get_option('default-variant'))
84 configh_data.set('DEFAULT_XKB_VARIANT', 'NULL')
86 if get_option('default-options') != ''
87 configh_data.set_quoted('DEFAULT_XKB_OPTIONS', get_option('default-options'))
89 configh_data.set('DEFAULT_XKB_OPTIONS', 'NULL')
91 if cc.has_header('unistd.h')
92 configh_data.set('HAVE_UNISTD_H', 1)
94 if cc.links('int main(){if(__builtin_expect(1<0,0)){}}', name: '__builtin_expect')
95 configh_data.set('HAVE___BUILTIN_EXPECT', 1)
97 if cc.has_header_symbol('unistd.h', 'eaccess', prefix: system_ext_define)
98 configh_data.set('HAVE_EACCESS', 1)
100 if cc.has_header_symbol('unistd.h', 'euidaccess', prefix: system_ext_define)
101 configh_data.set('HAVE_EUIDACCESS', 1)
103 if cc.has_header_symbol('sys/mman.h', 'mmap')
104 configh_data.set('HAVE_MMAP', 1)
106 if cc.has_header_symbol('stdlib.h', 'mkostemp', prefix: system_ext_define)
107 configh_data.set('HAVE_MKOSTEMP', 1)
109 if cc.has_header_symbol('fcntl.h', 'posix_fallocate', prefix: system_ext_define)
110 configh_data.set('HAVE_POSIX_FALLOCATE', 1)
112 if cc.has_header_symbol('string.h', 'strndup', prefix: system_ext_define)
113 configh_data.set('HAVE_STRNDUP', 1)
115 if cc.has_header_symbol('stdio.h', 'asprintf', prefix: system_ext_define)
116 configh_data.set('HAVE_ASPRINTF', 1)
117 elif cc.has_header_symbol('stdio.h', 'vasprintf', prefix: system_ext_define)
118 configh_data.set('HAVE_VASPRINTF', 1)
120 if cc.has_header_symbol('stdlib.h', 'secure_getenv', prefix: system_ext_define)
121 configh_data.set('HAVE_SECURE_GETENV', 1)
122 elif cc.has_header_symbol('stdlib.h', '__secure_getenv', prefix: system_ext_define)
123 configh_data.set('HAVE___SECURE_GETENV', 1)
125 message('C library does not support secure_getenv, using getenv instead')
127 if not cc.has_header_symbol('limits.h', 'PATH_MAX', prefix: system_ext_define)
128 if host_machine.system() == 'windows'
129 # see https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#maximum-path-length-limitation
130 configh_data.set('PATH_MAX', 260)
132 configh_data.set('PATH_MAX', 4096)
136 # Silence some security & deprecation warnings on MSVC
137 # for some unix/C functions we use.
138 # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-3-c4996?view=vs-2019
139 configh_data.set('_CRT_SECURE_NO_WARNINGS', 1)
140 configh_data.set('_CRT_NONSTDC_NO_WARNINGS', 1)
141 configh_data.set('_CRT_NONSTDC_NO_DEPRECATE', 1)
142 # Reduce unnecessary includes on MSVC.
143 configh_data.set('WIN32_LEAN_AND_MEAN', 1)
145 # Supports -Wl,--version-script?
146 have_version_script = cc.links(
148 args: '-Wl,--version-script=' + meson.current_source_dir()/'xkbcommon.map',
149 name: '-Wl,--version-script',
152 map_to_def = find_program('scripts/map-to-def')
155 # Note: we use some yacc extensions, which work with either GNU bison
156 # (preferred) or byacc (with backtracking enabled).
157 bison = find_program('bison', 'win_bison', required: false, version: '>= 2.3a')
160 yacc_gen = generator(
162 output: ['@BASENAME@.c', '@BASENAME@.h'],
163 arguments: ['--defines=@OUTPUT1@', '-o', '@OUTPUT0@', '-p', '_xkbcommon_', '@INPUT@'],
166 byacc = find_program('byacc', required: false)
169 yacc_gen = generator(
171 output: ['@BASENAME@.c', '@BASENAME@.h'],
172 arguments: ['-H', '@OUTPUT1@', '-o', '@OUTPUT0@', '-p', '_xkbcommon_', '@INPUT@'],
175 error('Could not find a compatible YACC program (bison or byacc)')
178 libxkbcommon_sources = [
179 'src/compose/parser.c',
180 'src/compose/parser.h',
181 'src/compose/paths.c',
182 'src/compose/paths.h',
183 'src/compose/state.c',
184 'src/compose/table.c',
185 'src/compose/table.h',
186 'src/xkbcomp/action.c',
187 'src/xkbcomp/action.h',
189 'src/xkbcomp/ast-build.c',
190 'src/xkbcomp/ast-build.h',
191 'src/xkbcomp/compat.c',
192 'src/xkbcomp/expr.c',
193 'src/xkbcomp/expr.h',
194 'src/xkbcomp/include.c',
195 'src/xkbcomp/include.h',
196 'src/xkbcomp/keycodes.c',
197 'src/xkbcomp/keymap.c',
198 'src/xkbcomp/keymap-dump.c',
199 'src/xkbcomp/keywords.c',
200 yacc_gen.process('src/xkbcomp/parser.y'),
201 'src/xkbcomp/parser-priv.h',
202 'src/xkbcomp/rules.c',
203 'src/xkbcomp/rules.h',
204 'src/xkbcomp/scanner.c',
205 'src/xkbcomp/symbols.c',
206 'src/xkbcomp/types.c',
207 'src/xkbcomp/vmod.c',
208 'src/xkbcomp/vmod.h',
209 'src/xkbcomp/xkbcomp.c',
210 'src/xkbcomp/xkbcomp-priv.h',
215 'src/context-priv.c',
224 'src/messages-codes.h',
225 'src/scanner-utils.h',
234 libxkbcommon_link_args = []
235 libxkbcommon_link_deps = []
236 if have_version_script
237 libxkbcommon_link_args += '-Wl,--version-script=' + meson.current_source_dir()/'xkbcommon.map'
238 libxkbcommon_link_deps += 'xkbcommon.map'
239 elif cc.get_argument_syntax() == 'msvc'
240 libxkbcommon_def = custom_target('xkbcommon.def',
241 command: [map_to_def, '@INPUT@', '@OUTPUT@'],
242 input: 'xkbcommon.map',
243 output: 'kxbcommon.def',
245 libxkbcommon_link_deps += libxkbcommon_def
246 libxkbcommon_link_args += '/DEF:' + libxkbcommon_def.full_path()
249 libxkbcommon = library(
251 'include/xkbcommon/xkbcommon.h',
252 libxkbcommon_sources,
253 link_args: libxkbcommon_link_args,
254 link_depends: libxkbcommon_link_deps,
255 gnu_symbol_visibility: 'hidden',
258 include_directories: include_directories('src', 'include'),
261 'include/xkbcommon/xkbcommon.h',
262 'include/xkbcommon/xkbcommon-compat.h',
263 'include/xkbcommon/xkbcommon-compose.h',
264 'include/xkbcommon/xkbcommon-keysyms.h',
265 'include/xkbcommon/xkbcommon-names.h',
269 dep_libxkbcommon = declare_dependency(
270 link_with: libxkbcommon,
271 include_directories: include_directories('include'),
273 if meson.version().version_compare('>= 0.54.0')
274 meson.override_dependency('xkbcommon', dep_libxkbcommon)
279 filebase: 'xkbcommon',
280 version: meson.project_version(),
281 description: 'XKB API common to servers and clients',
286 if get_option('enable-x11')
287 xcb_dep = dependency('xcb', version: '>=1.10', required: false)
288 xcb_xkb_dep = dependency('xcb-xkb', version: '>=1.10', required: false)
289 if not xcb_dep.found() or not xcb_xkb_dep.found()
290 error('''X11 support requires xcb-xkb >= 1.10 which was not found.
291 You can disable X11 support with -Denable-x11=false.''')
294 libxkbcommon_x11_sources = [
298 'src/x11/x11-priv.h',
300 'src/context-priv.c',
306 libxkbcommon_x11_link_args = []
307 libxkbcommon_x11_link_deps = []
308 if have_version_script
309 libxkbcommon_x11_link_args += '-Wl,--version-script=' + meson.current_source_dir()/'xkbcommon-x11.map'
310 libxkbcommon_x11_link_deps += 'xkbcommon-x11.map'
311 elif cc.get_argument_syntax() == 'msvc'
312 libxkbcommon_x11_def = custom_target('xkbcommon-x11.def',
313 command: [map_to_def, '@INPUT@', '@OUTPUT@'],
314 input: 'xkbcommon-x11.map',
315 output: 'xkbcommon-x11.def',
317 libxkbcommon_x11_link_deps += libxkbcommon_x11_def
318 libxkbcommon_x11_link_args += '/DEF:' + libxkbcommon_x11_def.full_path()
320 libxkbcommon_x11 = library(
322 'include/xkbcommon/xkbcommon-x11.h',
323 libxkbcommon_x11_sources,
324 link_args: libxkbcommon_x11_link_args,
325 link_depends: libxkbcommon_x11_link_deps,
326 gnu_symbol_visibility: 'hidden',
329 include_directories: include_directories('src', 'include'),
330 link_with: libxkbcommon,
337 'include/xkbcommon/xkbcommon-x11.h',
340 dep_libxkbcommon_x11 = declare_dependency(
341 link_with: libxkbcommon_x11,
342 include_directories: include_directories('include'),
344 if meson.version().version_compare('>= 0.54.0')
345 meson.override_dependency('xkbcommon-x11', dep_libxkbcommon_x11)
349 name: 'xkbcommon-x11',
350 filebase: 'xkbcommon-x11',
351 version: meson.project_version(),
352 description: 'XKB API common to servers and clients - X11 support',
353 requires: ['xkbcommon'],
354 requires_private: ['xcb>=1.10', 'xcb-xkb>=1.10'],
359 if get_option('enable-xkbregistry')
360 dep_libxml = dependency('libxml-2.0')
361 deps_libxkbregistry = [dep_libxml]
362 libxkbregistry_sources = [
369 libxkbregistry_link_args = []
370 libxkbregistry_link_deps = []
371 if have_version_script
372 libxkbregistry_link_args += '-Wl,--version-script=' + meson.current_source_dir()/'xkbregistry.map'
373 libxkbregistry_link_deps += 'xkbregistry.map'
374 elif cc.get_argument_syntax() == 'msvc'
375 libxkbregistry_def = custom_target('xkbregistry.def',
376 command: [map_to_def, '@INPUT@', '@OUTPUT@'],
377 input: 'xkbregistry.map',
378 output: 'xkbregistry.def',
380 libxkbregistry_link_deps += libxkbregistry_def
381 libxkbregistry_link_args += '/DEF:' + libxkbregistry_def.full_path()
383 libxkbregistry = library(
385 'include/xkbcommon/xkbregistry.h',
386 libxkbregistry_sources,
387 link_args: libxkbregistry_link_args,
388 link_depends: libxkbregistry_link_deps,
389 gnu_symbol_visibility: 'hidden',
390 dependencies: deps_libxkbregistry,
393 include_directories: include_directories('src', 'include'),
396 'include/xkbcommon/xkbregistry.h',
402 filebase: 'xkbregistry',
403 version: meson.project_version(),
404 description: 'XKB API to query available rules, models, layouts, variants and options',
407 dep_libxkbregistry = declare_dependency(
408 link_with: libxkbregistry,
409 include_directories: include_directories('include'),
411 if meson.version().version_compare('>= 0.54.0')
412 meson.override_dependency('xkbregistry', dep_libxkbregistry)
419 #build_tools = get_option('enable-tools') and cc.has_header_symbol('getopt.h', 'getopt_long', prefix: '#define _GNU_SOURCE')
423 libxkbcommon_tools_internal_sources = [
424 'tools/tools-common.h',
425 'tools/tools-common.c',
427 libxkbcommon_tools_internal = static_library(
429 libxkbcommon_tools_internal_sources,
430 dependencies: dep_libxkbcommon,
432 tools_dep = declare_dependency(
433 include_directories: [include_directories('tools', 'include')],
434 link_with: libxkbcommon_tools_internal,
435 dependencies: dep_libxkbcommon,
439 executable('xkbcli', 'tools/xkbcli.c',
440 dependencies: tools_dep, install: true)
441 install_man('tools/xkbcli.1')
443 if get_option('enable-bash-completion')
444 bash_completion_path = get_option('bash-completion-path')
445 if bash_completion_path == ''
446 bash_completion = dependency('bash-completion', required: false)
447 if bash_completion.found()
448 bash_completion_path = bash_completion.get_variable(pkgconfig: 'completionsdir')
450 bash_completion_path = get_option('datadir') / 'bash-completion/completions'
453 install_data('tools/xkbcli-bash-completion.sh',
455 install_dir: bash_completion_path)
458 # Tool: compile-keymap
459 xkbcli_compile_keymap = executable('xkbcli-compile-keymap',
460 'tools/compile-keymap.c',
461 dependencies: tools_dep,
463 install_dir: dir_libexec)
464 install_man('tools/xkbcli-compile-keymap.1')
465 # The same tool again, but with access to some private APIs.
466 executable('compile-keymap',
467 'tools/compile-keymap.c',
468 libxkbcommon_sources,
469 dependencies: [tools_dep],
470 c_args: ['-DENABLE_PRIVATE_APIS'],
471 include_directories: [include_directories('src', 'include')],
475 executable('compose',
477 dependencies: tools_dep,
478 include_directories: [include_directories('src', 'include')],
480 configh_data.set10('HAVE_XKBCLI_COMPILE_KEYMAP', true)
483 executable('xkbcli-how-to-type',
484 'tools/how-to-type.c',
485 dependencies: tools_dep,
487 install_dir: dir_libexec)
488 install_man('tools/xkbcli-how-to-type.1')
489 configh_data.set10('HAVE_XKBCLI_HOW_TO_TYPE', true)
491 # Tool: interactive-evdev
492 if cc.has_header('linux/input.h')
493 executable('xkbcli-interactive-evdev',
494 'tools/interactive-evdev.c',
495 dependencies: tools_dep,
497 install_dir: dir_libexec)
498 configh_data.set10('HAVE_XKBCLI_INTERACTIVE_EVDEV', true)
499 install_man('tools/xkbcli-interactive-evdev.1')
500 # The same tool again, but with access to some private APIs.
501 executable('interactive-evdev',
502 'tools/interactive-evdev.c',
503 libxkbcommon_sources,
504 libxkbcommon_tools_internal_sources,
505 dependencies: [tools_dep],
506 c_args: ['-DENABLE_PRIVATE_APIS'],
507 include_directories: [include_directories('src', 'include')],
511 # Tool: interactive-x11
512 if get_option('enable-x11')
513 x11_tools_dep = declare_dependency(
514 link_with: libxkbcommon_x11,
521 executable('xkbcli-interactive-x11',
522 'tools/interactive-x11.c',
523 dependencies: x11_tools_dep,
525 install_dir: dir_libexec)
526 install_man('tools/xkbcli-interactive-x11.1')
527 configh_data.set10('HAVE_XKBCLI_INTERACTIVE_X11', true)
530 # Tool: interactive-wayland
531 if get_option('enable-wayland')
532 wayland_client_dep = dependency('wayland-client', version: '>=1.2.0', required: false)
533 wayland_protocols_dep = dependency('wayland-protocols', version: '>=1.12', required: false)
534 wayland_scanner_dep = dependency('wayland-scanner', required: false, native: true)
535 if not wayland_client_dep.found() or not wayland_protocols_dep.found() or not wayland_scanner_dep.found()
536 error('''The Wayland xkbcli programs require wayland-client >= 1.2.0, wayland-protocols >= 1.7 which were not found.
537 You can disable the Wayland xkbcli programs with -Denable-wayland=false.''')
540 wayland_scanner = find_program(wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'))
541 wayland_scanner_code_gen = generator(
543 output: '@BASENAME@-protocol.c',
544 arguments: ['private-code', '@INPUT@', '@OUTPUT@'],
546 wayland_scanner_client_header_gen = generator(
548 output: '@BASENAME@-client-protocol.h',
549 arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
551 wayland_protocols_datadir = wayland_protocols_dep.get_variable(pkgconfig: 'pkgdatadir')
552 xdg_shell_xml = wayland_protocols_datadir/'stable/xdg-shell/xdg-shell.xml'
553 xdg_shell_sources = [
554 wayland_scanner_code_gen.process(xdg_shell_xml),
555 wayland_scanner_client_header_gen.process(xdg_shell_xml),
557 executable('xkbcli-interactive-wayland',
558 'tools/interactive-wayland.c',
560 dependencies: [tools_dep, wayland_client_dep],
562 install_dir: dir_libexec)
563 install_man('tools/xkbcli-interactive-wayland.1')
564 configh_data.set10('HAVE_XKBCLI_INTERACTIVE_WAYLAND', true)
568 if get_option('enable-xkbregistry')
569 configh_data.set10('HAVE_XKBCLI_LIST', true)
570 executable('xkbcli-list',
571 'tools/registry-list.c',
572 dependencies: dep_libxkbregistry,
574 install_dir: dir_libexec)
575 install_man('tools/xkbcli-list.1')
578 # Tool: check-messages
579 executable('xkb-check-messages',
580 'tools/check-messages.c',
583 'src/messages-codes.h',
584 dependencies: [tools_dep],
585 include_directories: [include_directories('src', 'include', 'tools')],
590 # xkeyboard-config "verifier"
591 xkct_config = configuration_data()
592 xkct_config.set('MESON_BUILD_ROOT', meson.current_build_dir())
593 xkct_config.set('XKB_CONFIG_ROOT', XKBCONFIGROOT)
594 configure_file(input: 'test/xkeyboard-config-test.py.in',
595 output: 'xkeyboard-config-test',
596 configuration: xkct_config)
599 test_env = environment()
600 test_env.set('XKB_LOG_LEVEL', 'debug')
601 test_env.set('XKB_LOG_VERBOSITY', '10')
602 test_env.set('top_srcdir', meson.current_source_dir())
603 test_env.set('top_builddir', meson.current_build_dir())
604 test_env.set('HAVE_XKBCLI_INTERACTIVE_EVDEV', configh_data.get('HAVE_XKBCLI_INTERACTIVE_EVDEV', 0).to_string())
605 test_env.set('HAVE_XKBCLI_INTERACTIVE_WAYLAND', configh_data.get('HAVE_XKBCLI_INTERACTIVE_WAYLAND', 0).to_string())
606 test_env.set('HAVE_XKBCLI_INTERACTIVE_X11', configh_data.get('HAVE_XKBCLI_INTERACTIVE_X11', 0).to_string())
607 test_env.set('HAVE_XKBCLI_LIST', configh_data.get('HAVE_XKBCLI_LIST', 0).to_string())
609 test_configh_data = configuration_data()
610 test_configh_data.set_quoted('TEST_XKB_CONFIG_ROOT', meson.current_source_dir()/'test'/'data')
611 configure_file(output: 'test-config.h', configuration: test_configh_data)
613 # Some tests need to use unexported symbols, so we link them against
614 # an internal copy of libxkbcommon with all symbols exposed.
615 libxkbcommon_test_internal = static_library(
616 'xkbcommon-test-internal',
619 'test/evdev-scancodes.h',
622 libxkbcommon_sources,
623 include_directories: include_directories('src', 'include'),
625 test_dep = declare_dependency(
626 include_directories: include_directories('src', 'include'),
627 link_with: libxkbcommon_test_internal,
629 if get_option('enable-x11')
630 libxkbcommon_x11_test_internal = static_library(
631 'xkbcommon-x11-internal',
632 libxkbcommon_x11_sources,
633 'test/xvfb-wrapper.c',
634 'test/xvfb-wrapper.h',
635 include_directories: include_directories('src', 'include'),
636 link_with: libxkbcommon_test_internal,
642 x11_test_dep = declare_dependency(
643 link_with: libxkbcommon_x11_test_internal,
653 executable('test-keysym', 'test/keysym.c', dependencies: test_dep),
658 executable('test-keymap', 'test/keymap.c', dependencies: test_dep),
663 executable('test-filecomp', 'test/filecomp.c', dependencies: test_dep),
668 executable('test-context', 'test/context.c', dependencies: test_dep),
673 executable('test-rules-file', 'test/rules-file.c', dependencies: test_dep),
677 'rules-file-includes',
678 executable('test-rules-file-includes', 'test/rules-file-includes.c', dependencies: test_dep),
683 executable('test-stringcomp', 'test/stringcomp.c', dependencies: test_dep),
688 executable('test-buffercomp', 'test/buffercomp.c', dependencies: test_dep),
693 executable('test-log', 'test/log.c', dependencies: test_dep),
698 executable('test-atom', 'test/atom.c', dependencies: test_dep),
703 executable('test-utf8', 'test/utf8.c', dependencies: test_dep),
708 executable('test-state', 'test/state.c', dependencies: test_dep),
713 executable('test-keyseq', 'test/keyseq.c', dependencies: test_dep),
718 executable('test-rulescomp', 'test/rulescomp.c', dependencies: test_dep),
723 executable('test-compose', 'test/compose.c', dependencies: test_dep),
728 executable('test-utils', 'test/utils.c', dependencies: test_dep),
733 find_program('test/symbols-leak-test.py'),
735 suite: ['python-tests'],
739 executable('test-modifiers', 'test/modifiers.c', dependencies: test_dep),
749 include_directories: include_directories('src', 'include', 'tools'),
750 dependencies: test_dep),
753 if get_option('enable-x11')
756 executable('test-x11', 'test/x11.c', dependencies: x11_test_dep),
761 executable('test-x11comp', 'test/x11comp.c', dependencies: x11_test_dep),
765 if get_option('enable-xkbregistry')
768 executable('test-registry', 'test/registry.c',
769 include_directories: include_directories('src'),
770 dependencies: [dep_libxkbregistry, test_dep]),
775 test('tool-option-parsing',
776 find_program('test/tool-option-parsing.py'),
778 suite: ['python-tests'])
780 # A set of keysyms to test for. Add one or two symbols to this array
781 # whenever the xorgproto gets updated to make sure we resolve them.
787 env.set('XKB_CONFIG_ROOT', meson.current_source_dir()/'test'/'data')
788 foreach keysym: keysyms_to_test
789 test('keysym-test-@0@'.format(keysym),
790 find_program('test/test-keysym.py'),
792 args: [keysym, '--tool', xkbcli_compile_keymap],
793 suite: ['python-tests'])
797 valgrind = find_program('valgrind', required: false)
799 add_test_setup('valgrind',
800 exe_wrapper: [valgrind,
802 '--track-origins=yes',
803 '--gen-suppressions=all',
804 '--error-exitcode=99'],
805 timeout_multiplier : 10)
807 message('valgrind not found, disabling valgrind test setup')
811 # Fuzzing target programs.
812 executable('fuzz-keymap', 'fuzz/keymap/target.c', dependencies: test_dep)
813 executable('fuzz-compose', 'fuzz/compose/target.c', dependencies: test_dep)
817 bench_env = environment()
818 bench_env.set('top_srcdir', meson.current_source_dir())
821 executable('bench-key-proc', 'bench/key-proc.c', dependencies: test_dep),
826 executable('bench-rules', 'bench/rules.c', dependencies: test_dep),
831 executable('bench-rulescomp', 'bench/rulescomp.c', dependencies: test_dep),
836 executable('bench-compose', 'bench/compose.c', dependencies: test_dep),
841 executable('bench-compose-traversal', 'bench/compose-traversal.c', dependencies: test_dep),
846 executable('bench-atom', 'bench/atom.c', dependencies: test_dep),
849 if get_option('enable-x11')
852 executable('bench-x11', 'bench/x11.c', dependencies: x11_test_dep),
859 if get_option('enable-docs')
860 doxygen = find_program('doxygen', required: false)
861 if not doxygen.found()
862 error('''Documentation requires doxygen which was not found.
863 You can disable the documentation with -Denable-docs=false.''')
865 doxygen_wrapper = find_program('scripts/doxygen-wrapper')
869 'doc/diagrams/xkb-configuration.dot',
870 'doc/doxygen-extra.css',
871 'doc/introduction-to-xkb.md',
872 'doc/quick-guide.md',
873 'doc/compatibility.md',
874 'doc/user-configuration.md',
875 'doc/rules-format.md',
876 'doc/keymap-format-text-v1.md',
877 'doc/message-registry.md',
878 'include/xkbcommon/xkbcommon.h',
879 'include/xkbcommon/xkbcommon-compose.h',
880 'include/xkbcommon/xkbcommon-keysyms.h',
881 'include/xkbcommon/xkbcommon-names.h',
882 'include/xkbcommon/xkbcommon-x11.h',
883 'include/xkbcommon/xkbregistry.h',
885 doxygen_data = configuration_data()
886 doxygen_data.set('PACKAGE_NAME', meson.project_name())
887 doxygen_data.set('PACKAGE_VERSION', meson.project_version())
888 doxygen_data.set('INPUT', ' '.join(doxygen_input))
889 doxygen_data.set('OUTPUT_DIRECTORY', meson.current_build_dir())
890 doxyfile = configure_file(
891 input: 'doc/Doxyfile.in',
893 configuration: doxygen_data,
895 # TODO: Meson should provide this.
896 docdir = get_option('datadir')/'doc'/meson.project_name()
897 doc_gen = custom_target(
899 input: [doxyfile] + doxygen_input,
904 meson.current_build_dir()/'Doxyfile',
905 meson.current_source_dir(),
909 build_by_default: true,
911 if get_option('enable-cool-uris')
912 ensure_stable_urls = find_program('scripts'/'ensure-stable-doc-urls.py')
915 input: [doc_gen, 'doc'/'cool-uris.yaml'],
919 'generate-redirections',
920 meson.current_source_dir()/'doc'/'cool-uris.yaml',
921 meson.current_build_dir()/'html'
924 build_by_default: true,
929 configure_file(output: 'config.h', configuration: configh_data)
932 # Stable variables for projects using xkbcommon as a subproject.
933 # These variables should not be renamed.
934 libxkbcommon_dep = dep_libxkbcommon
935 if get_option('enable-x11')
936 libxkbcommon_x11_dep = dep_libxkbcommon_x11
938 if get_option('enable-xkbregistry')
939 libxkbregistry_dep = dep_libxkbregistry
942 if meson.version().version_compare('>=0.62.0')
944 'backend': meson.backend(),
945 'buildtype': get_option('buildtype'),
946 'c_args': get_option('c_args'),
947 'c_link_args': get_option('c_link_args'),
948 'yacc': yacc.full_path() + ' ' + yacc.version(),
949 }, section: 'Compiler')
951 'prefix': get_option('prefix'),
952 'bindir': get_option('bindir'),
953 'libdir': get_option('libdir'),
954 'datadir': get_option('datadir'),
955 'xkb-config-root': XKBCONFIGROOT,
956 'xkb-config-extra-path': XKBCONFIGEXTRAPATH,
957 'xlocaledir': XLOCALEDIR,
958 }, section: 'Directories')
960 'docs': get_option('enable-docs'),
961 'tools': get_option('enable-tools'),
962 'wayland': get_option('enable-wayland'),
963 'x11': get_option('enable-x11'),
964 }, section: 'Features')
966 'layout': get_option('default-layout'),
967 'model': get_option('default-model'),
968 'options': get_option('default-options'),
969 'rules': get_option('default-rules'),
970 'variant': get_option('default-variant'),
971 }, section: 'Defaults')