Bump version to 1.4.0
[platform/upstream/libxkbcommon.git] / meson.build
1 project(
2     'libxkbcommon',
3     'c',
4     version: '1.4.0',
5     default_options: [
6         'c_std=c11',
7         'warning_level=2',
8         'b_lundef=true',
9     ],
10     meson_version : '>= 0.49.0',
11 )
12 pkgconfig = import('pkgconfig')
13 cc = meson.get_compiler('c')
14
15 dir_libexec = get_option('prefix')/get_option('libexecdir')/'xkbcommon'
16
17 # Compiler flags.
18 cflags = [
19     '-fno-strict-aliasing',
20     '-fsanitize-undefined-trap-on-error',
21     '-Wno-unused-parameter',
22     '-Wno-missing-field-initializers',
23     '-Wpointer-arith',
24     '-Wmissing-declarations',
25     '-Wformat=2',
26     '-Wstrict-prototypes',
27     '-Wmissing-prototypes',
28     '-Wnested-externs',
29     '-Wbad-function-cast',
30     '-Wshadow',
31     '-Wlogical-op',
32     '-Wdate-time',
33     '-Wwrite-strings',
34     '-Wno-documentation-deprecated-sync',
35 ]
36 add_project_arguments(cc.get_supported_arguments(cflags), language: 'c')
37
38
39 # The XKB config root.
40 XKBCONFIGROOT = get_option('xkb-config-root')
41 if XKBCONFIGROOT == ''
42     xkeyboard_config_dep = dependency('xkeyboard-config', required: false)
43     if xkeyboard_config_dep.found()
44         XKBCONFIGROOT = xkeyboard_config_dep.get_pkgconfig_variable('xkb_base')
45     else
46         XKBCONFIGROOT = get_option('prefix')/get_option('datadir')/'X11'/'xkb'
47   endif
48 endif
49
50 XKBCONFIGEXTRAPATH = get_option('xkb-config-extra-path')
51 if XKBCONFIGEXTRAPATH == ''
52     XKBCONFIGEXTRAPATH = get_option('prefix')/get_option('sysconfdir')/'xkb'
53 endif
54
55 # The X locale directory for compose.
56 XLOCALEDIR = get_option('x-locale-root')
57 if XLOCALEDIR == ''
58     XLOCALEDIR = get_option('prefix')/get_option('datadir')/'X11'/'locale'
59 endif
60
61
62 # config.h.
63 configh_data = configuration_data()
64 configh_data.set('EXIT_INVALID_USAGE', '2')
65 configh_data.set_quoted('LIBXKBCOMMON_VERSION', meson.project_version())
66 configh_data.set_quoted('LIBXKBCOMMON_TOOL_PATH', dir_libexec)
67 # Like AC_USE_SYSTEM_EXTENSIONS, what #define to use to get extensions
68 # beyond the base POSIX function set.
69 if host_machine.system() == 'sunos'
70   system_extensions = '__EXTENSIONS__'
71 else
72   system_extensions = '_GNU_SOURCE'
73 endif
74 configh_data.set(system_extensions, 1)
75 system_ext_define = '#define ' + system_extensions
76 configh_data.set_quoted('DFLT_XKB_CONFIG_ROOT', XKBCONFIGROOT)
77 configh_data.set_quoted('DFLT_XKB_CONFIG_EXTRA_PATH', XKBCONFIGEXTRAPATH)
78 configh_data.set_quoted('XLOCALEDIR', XLOCALEDIR)
79 configh_data.set_quoted('DEFAULT_XKB_RULES', get_option('default-rules'))
80 configh_data.set_quoted('DEFAULT_XKB_MODEL', get_option('default-model'))
81 configh_data.set_quoted('DEFAULT_XKB_LAYOUT', get_option('default-layout'))
82 if get_option('default-variant') != ''
83     configh_data.set_quoted('DEFAULT_XKB_VARIANT', get_option('default-variant'))
84 else
85     configh_data.set('DEFAULT_XKB_VARIANT', 'NULL')
86 endif
87 if get_option('default-options') != ''
88     configh_data.set_quoted('DEFAULT_XKB_OPTIONS', get_option('default-options'))
89 else
90     configh_data.set('DEFAULT_XKB_OPTIONS', 'NULL')
91 endif
92 if cc.has_header('unistd.h')
93     configh_data.set('HAVE_UNISTD_H', 1)
94 endif
95 if cc.links('int main(){if(__builtin_expect(1<0,0)){}}', name: '__builtin_expect')
96     configh_data.set('HAVE___BUILTIN_EXPECT', 1)
97 endif
98 if cc.has_header_symbol('unistd.h', 'eaccess', prefix: system_ext_define)
99     configh_data.set('HAVE_EACCESS', 1)
100 endif
101 if cc.has_header_symbol('unistd.h', 'euidaccess', prefix: system_ext_define)
102     configh_data.set('HAVE_EUIDACCESS', 1)
103 endif
104 if cc.has_header_symbol('sys/mman.h', 'mmap')
105     configh_data.set('HAVE_MMAP', 1)
106 endif
107 if cc.has_header_symbol('stdlib.h', 'mkostemp', prefix: system_ext_define)
108     configh_data.set('HAVE_MKOSTEMP', 1)
109 endif
110 if cc.has_header_symbol('fcntl.h', 'posix_fallocate', prefix: system_ext_define)
111     configh_data.set('HAVE_POSIX_FALLOCATE', 1)
112 endif
113 if cc.has_header_symbol('string.h', 'strndup', prefix: system_ext_define)
114     configh_data.set('HAVE_STRNDUP', 1)
115 endif
116 if cc.has_header_symbol('stdio.h', 'asprintf', prefix: system_ext_define)
117     configh_data.set('HAVE_ASPRINTF', 1)
118 elif cc.has_header_symbol('stdio.h', 'vasprintf', prefix: system_ext_define)
119     configh_data.set('HAVE_VASPRINTF', 1)
120 endif
121 if cc.has_header_symbol('stdlib.h', 'secure_getenv', prefix: system_ext_define)
122     configh_data.set('HAVE_SECURE_GETENV', 1)
123 elif cc.has_header_symbol('stdlib.h', '__secure_getenv', prefix: system_ext_define)
124     configh_data.set('HAVE___SECURE_GETENV', 1)
125 else
126     message('C library does not support secure_getenv, using getenv instead')
127 endif
128 if not cc.has_header_symbol('limits.h', 'PATH_MAX', prefix: system_ext_define)
129     if host_machine.system() == 'windows'
130         # see https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#maximum-path-length-limitation
131         configh_data.set('PATH_MAX', 260)
132     else
133         configh_data.set('PATH_MAX', 4096)
134     endif
135 endif
136
137 # Silence some security & deprecation warnings on MSVC
138 # for some unix/C functions we use.
139 # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-3-c4996?view=vs-2019
140 configh_data.set('_CRT_SECURE_NO_WARNINGS', 1)
141 configh_data.set('_CRT_NONSTDC_NO_WARNINGS', 1)
142 configh_data.set('_CRT_NONSTDC_NO_DEPRECATE', 1)
143 # Reduce unnecessary includes on MSVC.
144 configh_data.set('WIN32_LEAN_AND_MEAN', 1)
145
146 # Supports -Wl,--version-script?
147 have_version_script = cc.links(
148     'int main(){}',
149     args: '-Wl,--version-script=' + meson.source_root()/'xkbcommon.map',
150     name: '-Wl,--version-script',
151 )
152
153 map_to_def = find_program('scripts/map-to-def')
154
155 # libxkbcommon.
156 # Note: we use some yacc extensions, which work with either GNU bison
157 # (preferred) or byacc (with backtracking enabled).
158 bison = find_program('bison', 'win_bison', required: false)
159 if bison.found()
160     yacc_gen = generator(
161         bison,
162         output: ['@BASENAME@.c', '@BASENAME@.h'],
163         arguments: ['--defines=@OUTPUT1@', '-o', '@OUTPUT0@', '-p', '_xkbcommon_', '@INPUT@'],
164     )
165 else
166     byacc = find_program('byacc', required: false)
167     if byacc.found()
168         yacc_gen = generator(
169             byacc,
170             output: ['@BASENAME@.c', '@BASENAME@.h'],
171             arguments: ['-H', '@OUTPUT1@', '-o', '@OUTPUT0@', '-p', '_xkbcommon_', '@INPUT@'],
172         )
173     else
174         error('Could not find a compatible YACC program (bison or byacc)')
175     endif
176 endif
177 libxkbcommon_sources = [
178     'src/compose/parser.c',
179     'src/compose/parser.h',
180     'src/compose/paths.c',
181     'src/compose/paths.h',
182     'src/compose/state.c',
183     'src/compose/table.c',
184     'src/compose/table.h',
185     'src/xkbcomp/action.c',
186     'src/xkbcomp/action.h',
187     'src/xkbcomp/ast.h',
188     'src/xkbcomp/ast-build.c',
189     'src/xkbcomp/ast-build.h',
190     'src/xkbcomp/compat.c',
191     'src/xkbcomp/expr.c',
192     'src/xkbcomp/expr.h',
193     'src/xkbcomp/include.c',
194     'src/xkbcomp/include.h',
195     'src/xkbcomp/keycodes.c',
196     'src/xkbcomp/keymap.c',
197     'src/xkbcomp/keymap-dump.c',
198     'src/xkbcomp/keywords.c',
199     yacc_gen.process('src/xkbcomp/parser.y'),
200     'src/xkbcomp/parser-priv.h',
201     'src/xkbcomp/rules.c',
202     'src/xkbcomp/rules.h',
203     'src/xkbcomp/scanner.c',
204     'src/xkbcomp/symbols.c',
205     'src/xkbcomp/types.c',
206     'src/xkbcomp/vmod.c',
207     'src/xkbcomp/vmod.h',
208     'src/xkbcomp/xkbcomp.c',
209     'src/xkbcomp/xkbcomp-priv.h',
210     'src/atom.c',
211     'src/atom.h',
212     'src/context.c',
213     'src/context.h',
214     'src/context-priv.c',
215     'src/darray.h',
216     'src/keysym.c',
217     'src/keysym.h',
218     'src/keysym-utf.c',
219     'src/ks_tables.h',
220     'src/keymap.c',
221     'src/keymap.h',
222     'src/keymap-priv.c',
223     'src/scanner-utils.h',
224     'src/state.c',
225     'src/text.c',
226     'src/text.h',
227     'src/utf8.c',
228     'src/utf8.h',
229     'src/utils.c',
230     'src/utils.h',
231 ]
232 libxkbcommon_link_args = []
233 libxkbcommon_link_deps = []
234 if have_version_script
235     libxkbcommon_link_args += '-Wl,--version-script=' + meson.source_root()/'xkbcommon.map'
236     libxkbcommon_link_deps += 'xkbcommon.map'
237 elif cc.get_argument_syntax() == 'msvc'
238     libxkbcommon_def = custom_target('xkbcommon.def',
239         command: [map_to_def, '@INPUT@', '@OUTPUT@'],
240         input: 'xkbcommon.map',
241         output: 'kxbcommon.def',
242     )
243     libxkbcommon_link_deps += libxkbcommon_def
244     libxkbcommon_link_args += '/DEF:' + libxkbcommon_def.full_path()
245 endif
246 libxkbcommon = library(
247     'xkbcommon',
248     'include/xkbcommon/xkbcommon.h',
249     libxkbcommon_sources,
250     link_args: libxkbcommon_link_args,
251     link_depends: libxkbcommon_link_deps,
252     gnu_symbol_visibility: 'hidden',
253     version: '0.0.0',
254     install: true,
255     include_directories: include_directories('src', 'include'),
256 )
257 install_headers(
258     'include/xkbcommon/xkbcommon.h',
259     'include/xkbcommon/xkbcommon-compat.h',
260     'include/xkbcommon/xkbcommon-compose.h',
261     'include/xkbcommon/xkbcommon-keysyms.h',
262     'include/xkbcommon/xkbcommon-names.h',
263     subdir: 'xkbcommon',
264 )
265
266 dep_libxkbcommon = declare_dependency(
267     link_with: libxkbcommon,
268     include_directories: include_directories('include'),
269 )
270 pkgconfig.generate(
271     libxkbcommon,
272     name: 'xkbcommon',
273     filebase: 'xkbcommon',
274     version: meson.project_version(),
275     description: 'XKB API common to servers and clients',
276 )
277
278
279 # libxkbcommon-x11.
280 if get_option('enable-x11')
281     xcb_dep = dependency('xcb', version: '>=1.10', required: false)
282     xcb_xkb_dep = dependency('xcb-xkb', version: '>=1.10', required: false)
283     if not xcb_dep.found() or not xcb_xkb_dep.found()
284         error('''X11 support requires xcb-xkb >= 1.10 which was not found.
285 You can disable X11 support with -Denable-x11=false.''')
286     endif
287
288     libxkbcommon_x11_sources = [
289         'src/x11/keymap.c',
290         'src/x11/state.c',
291         'src/x11/util.c',
292         'src/x11/x11-priv.h',
293         'src/context.h',
294         'src/context-priv.c',
295         'src/keymap.h',
296         'src/keymap-priv.c',
297         'src/atom.h',
298         'src/atom.c',
299     ]
300     libxkbcommon_x11_link_args = []
301     libxkbcommon_x11_link_deps = []
302     if have_version_script
303         libxkbcommon_x11_link_args += '-Wl,--version-script=' + meson.source_root()/'xkbcommon-x11.map'
304         libxkbcommon_x11_link_deps += 'xkbcommon-x11.map'
305     elif cc.get_argument_syntax() == 'msvc'
306         libxkbcommon_x11_def = custom_target('xkbcommon-x11.def',
307             command: [map_to_def, '@INPUT@', '@OUTPUT@'],
308             input: 'xkbcommon-x11.map',
309             output: 'xkbcommon-x11.def',
310         )
311         libxkbcommon_x11_link_deps += libxkbcommon_x11_def
312         libxkbcommon_x11_link_args += '/DEF:' + libxkbcommon_x11_def.full_path()
313     endif
314     libxkbcommon_x11 = library(
315         'xkbcommon-x11',
316         'include/xkbcommon/xkbcommon-x11.h',
317         libxkbcommon_x11_sources,
318         link_args: libxkbcommon_x11_link_args,
319         link_depends: libxkbcommon_x11_link_deps,
320         gnu_symbol_visibility: 'hidden',
321         version: '0.0.0',
322         install: true,
323         include_directories: include_directories('src', 'include'),
324         link_with: libxkbcommon,
325         dependencies: [
326             xcb_dep,
327             xcb_xkb_dep,
328         ],
329     )
330     install_headers(
331         'include/xkbcommon/xkbcommon-x11.h',
332         subdir: 'xkbcommon',
333     )
334     dep_libxkbcommon_x11 = declare_dependency(
335         link_with: libxkbcommon_x11,
336         include_directories: include_directories('include'),
337     )
338     pkgconfig.generate(
339         libxkbcommon_x11,
340         name: 'xkbcommon-x11',
341         filebase: 'xkbcommon-x11',
342         version: meson.project_version(),
343         description: 'XKB API common to servers and clients - X11 support',
344         requires: ['xkbcommon'],
345         requires_private: ['xcb>=1.10', 'xcb-xkb>=1.10'],
346     )
347 endif
348
349 # libxkbregistry
350 if get_option('enable-xkbregistry')
351     dep_libxml = dependency('libxml-2.0')
352     deps_libxkbregistry = [dep_libxml]
353     libxkbregistry_sources = [
354         'src/registry.c',
355         'src/utils.h',
356         'src/utils.c',
357         'src/util-list.h',
358         'src/util-list.c',
359     ]
360     libxkbregistry_link_args = []
361     libxkbregistry_link_deps = []
362     if have_version_script
363         libxkbregistry_link_args += '-Wl,--version-script=' + meson.source_root()/'xkbregistry.map'
364         libxkbregistry_link_deps += 'xkbregistry.map'
365     elif cc.get_argument_syntax() == 'msvc'
366         libxkbregistry_def = custom_target('xkbregistry.def',
367             command: [map_to_def, '@INPUT@', '@OUTPUT@'],
368             input: 'xkbregistry.map',
369             output: 'xkbregistry.def',
370         )
371         libxkbregistry_link_deps += libxkbregistry_def
372         libxkbregistry_link_args += '/DEF:' + libxkbregistry_def.full_path()
373     endif
374     libxkbregistry = library(
375         'xkbregistry',
376         'include/xkbcommon/xkbregistry.h',
377         libxkbregistry_sources,
378         link_args: libxkbregistry_link_args,
379         link_depends: libxkbregistry_link_deps,
380         gnu_symbol_visibility: 'hidden',
381         dependencies: deps_libxkbregistry,
382         version: '0.0.0',
383         install: true,
384         include_directories: include_directories('src', 'include'),
385     )
386     install_headers(
387         'include/xkbcommon/xkbregistry.h',
388         subdir: 'xkbcommon',
389     )
390     pkgconfig.generate(
391         libxkbregistry,
392         name: 'xkbregistry',
393         filebase: 'xkbregistry',
394         version: meson.project_version(),
395         description: 'XKB API to query available rules, models, layouts, variants and options',
396     )
397
398     dep_libxkbregistry = declare_dependency(
399         link_with: libxkbregistry,
400         include_directories: include_directories('include'),
401     )
402 endif
403
404 man_pages = []
405
406 # Tools
407 build_tools = get_option('enable-tools') and cc.has_header_symbol('getopt.h', 'getopt_long', prefix: '#define _GNU_SOURCE')
408 if build_tools
409     libxkbcommon_tools_internal = static_library(
410         'tools-internal',
411         'tools/tools-common.h',
412         'tools/tools-common.c',
413         dependencies: dep_libxkbcommon,
414     )
415     tools_dep = declare_dependency(
416         include_directories: [include_directories('tools', 'include')],
417         link_with: libxkbcommon_tools_internal,
418     )
419
420     executable('xkbcli', 'tools/xkbcli.c',
421                dependencies: tools_dep, install: true)
422     install_man('tools/xkbcli.1')
423
424     xkbcli_compile_keymap = executable('xkbcli-compile-keymap',
425                                        'tools/compile-keymap.c',
426                                        dependencies: tools_dep,
427                                        install: true,
428                                        install_dir: dir_libexec)
429     install_man('tools/xkbcli-compile-keymap.1')
430     # The same tool again, but with access to some private APIs.
431     executable('compile-keymap',
432                'tools/compile-keymap.c',
433                libxkbcommon_sources,
434                dependencies: [tools_dep],
435                c_args: ['-DENABLE_PRIVATE_APIS'],
436                include_directories: [include_directories('src', 'include')],
437                install: false)
438     executable('compose',
439                'tools/compose.c',
440                dependencies: tools_dep,
441                include_directories: [include_directories('src', 'include')],
442                install: false)
443     configh_data.set10('HAVE_XKBCLI_COMPILE_KEYMAP', true)
444     executable('xkbcli-how-to-type',
445                'tools/how-to-type.c',
446                dependencies: tools_dep,
447                install: true,
448                install_dir: dir_libexec)
449     install_man('tools/xkbcli-how-to-type.1')
450     configh_data.set10('HAVE_XKBCLI_HOW_TO_TYPE', true)
451     if cc.has_header('linux/input.h')
452         executable('xkbcli-interactive-evdev',
453                    'tools/interactive-evdev.c',
454                    dependencies: tools_dep,
455                    install: true,
456                    install_dir: dir_libexec)
457         configh_data.set10('HAVE_XKBCLI_INTERACTIVE_EVDEV', true)
458         install_man('tools/xkbcli-interactive-evdev.1')
459     endif
460     if get_option('enable-x11')
461         x11_tools_dep = declare_dependency(
462             link_with: libxkbcommon_x11,
463             dependencies: [
464                 tools_dep,
465                 xcb_dep,
466                 xcb_xkb_dep,
467             ],
468         )
469         executable('xkbcli-interactive-x11',
470                    'tools/interactive-x11.c',
471                    dependencies: x11_tools_dep,
472                    install: true,
473                    install_dir: dir_libexec)
474         install_man('tools/xkbcli-interactive-x11.1')
475         configh_data.set10('HAVE_XKBCLI_INTERACTIVE_X11', true)
476     endif
477     if get_option('enable-wayland')
478         wayland_client_dep = dependency('wayland-client', version: '>=1.2.0', required: false)
479         wayland_protocols_dep = dependency('wayland-protocols', version: '>=1.12', required: false)
480         wayland_scanner_dep = dependency('wayland-scanner', required: false, native: true)
481         if not wayland_client_dep.found() or not wayland_protocols_dep.found() or not wayland_scanner_dep.found()
482             error('''The Wayland xkbcli programs require wayland-client >= 1.2.0, wayland-protocols >= 1.7 which were not found.
483 You can disable the Wayland xkbcli programs with -Denable-wayland=false.''')
484         endif
485
486         wayland_scanner = find_program(wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'))
487         wayland_scanner_code_gen = generator(
488             wayland_scanner,
489             output: '@BASENAME@-protocol.c',
490             arguments: ['code', '@INPUT@', '@OUTPUT@'],
491         )
492         wayland_scanner_client_header_gen = generator(
493             wayland_scanner,
494             output: '@BASENAME@-client-protocol.h',
495             arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
496         )
497         wayland_protocols_datadir = wayland_protocols_dep.get_pkgconfig_variable('pkgdatadir')
498         xdg_shell_xml = wayland_protocols_datadir/'stable/xdg-shell/xdg-shell.xml'
499         xdg_shell_sources = [
500             wayland_scanner_code_gen.process(xdg_shell_xml),
501             wayland_scanner_client_header_gen.process(xdg_shell_xml),
502         ]
503         executable('xkbcli-interactive-wayland',
504                    'tools/interactive-wayland.c',
505                    xdg_shell_sources,
506                    dependencies: [tools_dep, wayland_client_dep],
507                    install: true,
508                    install_dir: dir_libexec)
509         install_man('tools/xkbcli-interactive-wayland.1')
510         configh_data.set10('HAVE_XKBCLI_INTERACTIVE_WAYLAND', true)
511     endif
512
513     if get_option('enable-xkbregistry')
514         configh_data.set10('HAVE_XKBCLI_LIST', true)
515         executable('xkbcli-list',
516                    'tools/registry-list.c',
517                    dependencies: dep_libxkbregistry,
518                    install: true,
519                    install_dir: dir_libexec)
520         install_man('tools/xkbcli-list.1')
521     endif
522 endif
523
524
525 # xkeyboard-config "verifier"
526 xkct_config = configuration_data()
527 xkct_config.set('MESON_BUILD_ROOT', meson.build_root())
528 xkct_config.set('XKB_CONFIG_ROOT', XKBCONFIGROOT)
529 configure_file(input: 'test/xkeyboard-config-test.py.in',
530                output: 'xkeyboard-config-test',
531                configuration: xkct_config)
532
533 # Tests
534 test_env = environment()
535 test_env.set('XKB_LOG_LEVEL', 'debug')
536 test_env.set('XKB_LOG_VERBOSITY', '10')
537 test_env.set('top_srcdir', meson.source_root())
538 test_env.set('top_builddir', meson.build_root())
539 test_env.set('HAVE_XKBCLI_INTERACTIVE_EVDEV', configh_data.get('HAVE_XKBCLI_INTERACTIVE_EVDEV', 0).to_string())
540 test_env.set('HAVE_XKBCLI_INTERACTIVE_WAYLAND', configh_data.get('HAVE_XKBCLI_INTERACTIVE_WAYLAND', 0).to_string())
541 test_env.set('HAVE_XKBCLI_INTERACTIVE_X11', configh_data.get('HAVE_XKBCLI_INTERACTIVE_X11', 0).to_string())
542 test_env.set('HAVE_XKBCLI_LIST', configh_data.get('HAVE_XKBCLI_LIST', 0).to_string())
543
544 test_configh_data = configuration_data()
545 test_configh_data.set_quoted('TEST_XKB_CONFIG_ROOT', meson.source_root()/'test'/'data')
546 configure_file(output: 'test-config.h', configuration: test_configh_data)
547
548 # Some tests need to use unexported symbols, so we link them against
549 # an internal copy of libxkbcommon with all symbols exposed.
550 libxkbcommon_test_internal = static_library(
551     'xkbcommon-test-internal',
552     'test/common.c',
553     'test/test.h',
554     'test/evdev-scancodes.h',
555     'bench/bench.c',
556     'bench/bench.h',
557     libxkbcommon_sources,
558     include_directories: include_directories('src', 'include'),
559 )
560 test_dep = declare_dependency(
561     include_directories: include_directories('src', 'include'),
562     link_with: libxkbcommon_test_internal,
563 )
564 if get_option('enable-x11')
565     libxkbcommon_x11_internal = static_library(
566         'xkbcommon-x11-internal',
567         libxkbcommon_x11_sources,
568         include_directories: include_directories('src', 'include'),
569         link_with: libxkbcommon_test_internal,
570         dependencies: [
571             xcb_dep,
572             xcb_xkb_dep,
573         ],
574     )
575     x11_test_dep = declare_dependency(
576         link_with: libxkbcommon_x11_internal,
577         dependencies: [
578             test_dep,
579             xcb_dep,
580             xcb_xkb_dep,
581         ],
582     )
583 endif
584 test(
585     'keysym',
586     executable('test-keysym', 'test/keysym.c', dependencies: test_dep),
587     env: test_env,
588 )
589 test(
590     'keymap',
591     executable('test-keymap', 'test/keymap.c', dependencies: test_dep),
592     env: test_env,
593 )
594 test(
595     'filecomp',
596     executable('test-filecomp', 'test/filecomp.c', dependencies: test_dep),
597     env: test_env,
598 )
599 # TODO: This test currently uses some functions that don't exist on Windows.
600 if cc.get_id() != 'msvc'
601   test(
602       'context',
603       executable('test-context', 'test/context.c', dependencies: test_dep),
604       env: test_env,
605   )
606 endif
607 test(
608     'rules-file',
609     executable('test-rules-file', 'test/rules-file.c', dependencies: test_dep),
610     env: test_env,
611 )
612 test(
613     'rules-file-includes',
614     executable('test-rules-file-includes', 'test/rules-file-includes.c', dependencies: test_dep),
615     env: test_env,
616 )
617 test(
618     'stringcomp',
619     executable('test-stringcomp', 'test/stringcomp.c', dependencies: test_dep),
620     env: test_env,
621 )
622 test(
623     'buffercomp',
624     executable('test-buffercomp', 'test/buffercomp.c', dependencies: test_dep),
625     env: test_env,
626 )
627 test(
628     'log',
629     executable('test-log', 'test/log.c', dependencies: test_dep),
630     env: test_env,
631 )
632 test(
633     'atom',
634     executable('test-atom', 'test/atom.c', dependencies: test_dep),
635     env: test_env,
636 )
637 test(
638     'utf8',
639     executable('test-utf8', 'test/utf8.c', dependencies: test_dep),
640     env: test_env,
641 )
642 test(
643     'state',
644     executable('test-state', 'test/state.c', dependencies: test_dep),
645     env: test_env,
646 )
647 test(
648     'keyseq',
649     executable('test-keyseq', 'test/keyseq.c', dependencies: test_dep),
650     env: test_env,
651 )
652 test(
653     'rulescomp',
654     executable('test-rulescomp', 'test/rulescomp.c', dependencies: test_dep),
655     env: test_env,
656 )
657 test(
658     'compose',
659     executable('test-compose', 'test/compose.c', dependencies: test_dep),
660     env: test_env,
661 )
662 test(
663     'utils',
664     executable('test-utils', 'test/utils.c', dependencies: test_dep),
665     env: test_env,
666 )
667 test(
668     'symbols-leak-test',
669     find_program('test/symbols-leak-test.py'),
670     env: test_env,
671     suite: ['python-tests'],
672 )
673 if get_option('enable-x11')
674     test(
675         'x11',
676         executable('test-x11', 'test/x11.c', dependencies: x11_test_dep),
677         env: test_env,
678     )
679     # test/x11comp is meant to be run, but it is (temporarily?) disabled.
680     # See: https://github.com/xkbcommon/libxkbcommon/issues/30
681     executable('test-x11comp', 'test/x11comp.c', dependencies: x11_test_dep)
682 endif
683 if get_option('enable-xkbregistry')
684     test(
685         'registry',
686         executable('test-registry', 'test/registry.c',
687                    include_directories: include_directories('src'),
688                    dependencies: dep_libxkbregistry),
689         env: test_env,
690     )
691 endif
692 if build_tools
693     test('tool-option-parsing',
694          find_program('test/tool-option-parsing.py'),
695          env: test_env,
696          suite: ['python-tests'])
697
698     # A set of keysyms to test for. Add one or two symbols to this array
699     # whenever the xorgproto gets updated to make sure we resolve them.
700     keysyms_to_test = [
701         'XF86Macro23',
702     ]
703
704     env = environment()
705     env.set('XKB_CONFIG_ROOT', meson.source_root()/'test'/'data')
706     foreach keysym: keysyms_to_test
707         test('keysym-test-@0@'.format(keysym),
708              find_program('test/test-keysym.py'),
709              env: env,
710              args: [keysym, '--tool', xkbcli_compile_keymap],
711              suite: ['python-tests'])
712     endforeach
713 endif
714
715 valgrind = find_program('valgrind', required: false)
716 if valgrind.found()
717     add_test_setup('valgrind',
718         exe_wrapper: [valgrind,
719                        '--leak-check=full',
720                        '--track-origins=yes',
721                        '--gen-suppressions=all',
722                        '--error-exitcode=99'],
723         timeout_multiplier : 10)
724 else
725     message('valgrind not found, disabling valgrind test setup')
726 endif
727
728
729 # Fuzzing target programs.
730 executable('fuzz-keymap', 'fuzz/keymap/target.c', dependencies: test_dep)
731 executable('fuzz-compose', 'fuzz/compose/target.c', dependencies: test_dep)
732
733
734 # Benchmarks.
735 bench_env = environment()
736 bench_env.set('top_srcdir', meson.source_root())
737 benchmark(
738     'key-proc',
739     executable('bench-key-proc', 'bench/key-proc.c', dependencies: test_dep),
740     env: bench_env,
741 )
742 benchmark(
743     'rules',
744     executable('bench-rules', 'bench/rules.c', dependencies: test_dep),
745     env: bench_env,
746 )
747 benchmark(
748     'rulescomp',
749     executable('bench-rulescomp', 'bench/rulescomp.c', dependencies: test_dep),
750     env: bench_env,
751 )
752 benchmark(
753     'compose',
754     executable('bench-compose', 'bench/compose.c', dependencies: test_dep),
755     env: bench_env,
756 )
757 benchmark(
758     'atom',
759     executable('bench-atom', 'bench/atom.c', dependencies: test_dep),
760     env: bench_env,
761 )
762 if get_option('enable-x11')
763   benchmark(
764       'x11',
765       executable('bench-x11', 'bench/x11.c', dependencies: x11_test_dep),
766       env: bench_env,
767   )
768 endif
769
770
771 # Documentation.
772 if get_option('enable-docs')
773     doxygen = find_program('doxygen', required: false)
774     if not doxygen.found()
775         error('''Documentation requires doxygen which was not found.
776 You can disable the documentation with -Denable-docs=false.''')
777     endif
778     doxygen_wrapper = find_program('scripts/doxygen-wrapper')
779
780     doxygen_input = [
781         'README.md',
782         'doc/doxygen-extra.css',
783         'doc/quick-guide.md',
784         'doc/compat.md',
785         'doc/user-configuration.md',
786         'doc/rules-format.md',
787         'doc/keymap-format-text-v1.md',
788         'include/xkbcommon/xkbcommon.h',
789         'include/xkbcommon/xkbcommon-names.h',
790         'include/xkbcommon/xkbcommon-x11.h',
791         'include/xkbcommon/xkbcommon-compose.h',
792         'include/xkbcommon/xkbregistry.h',
793     ]
794     doxygen_data = configuration_data()
795     doxygen_data.set('PACKAGE_NAME', meson.project_name())
796     doxygen_data.set('PACKAGE_VERSION', meson.project_version())
797     doxygen_data.set('INPUT', ' '.join(doxygen_input))
798     doxygen_data.set('OUTPUT_DIRECTORY', meson.build_root())
799     doxyfile = configure_file(
800         input: 'doc/Doxyfile.in',
801         output: 'Doxyfile',
802         configuration: doxygen_data,
803     )
804     # TODO: Meson should provide this.
805     docdir = get_option('datadir')/'doc'/meson.project_name()
806     custom_target(
807         'doc',
808         input: [doxyfile] + doxygen_input,
809         output: 'html',
810         command: [doxygen_wrapper, doxygen.path(), meson.build_root()/'Doxyfile', meson.source_root()],
811         install: true,
812         install_dir: docdir,
813         build_by_default: true,
814     )
815 endif
816
817 configure_file(output: 'config.h', configuration: configh_data)
818
819
820 # Stable variables for projects using xkbcommon as a subproject.
821 # These variables should not be renamed.
822 libxkbcommon_dep = dep_libxkbcommon
823 if get_option('enable-x11')
824   libxkbcommon_x11_dep = dep_libxkbcommon_x11
825 endif
826 if get_option('enable-xkbregistry')
827   libxkbregistry_dep = dep_libxkbregistry
828 endif