tools/interactive-x11: use keysym to look for Esc
[platform/upstream/libxkbcommon.git] / meson.build
index 9c238be..62045fb 100644 (file)
@@ -1,7 +1,7 @@
 project(
     'libxkbcommon',
     'c',
-    version: '1.2.1',
+    version: '1.3.0',
     default_options: [
         'c_std=c11',
         'warning_level=2',
@@ -437,6 +437,11 @@ if build_tools
                c_args: ['-DENABLE_PRIVATE_APIS'],
                include_directories: [include_directories('src', 'include')],
                install: false)
+    executable('compose',
+               'tools/compose.c',
+               dependencies: tools_dep,
+               include_directories: [include_directories('src', 'include')],
+               install: false)
     configh_data.set10('HAVE_XKBCLI_COMPILE_KEYMAP', true)
     executable('xkbcli-how-to-type',
                'tools/how-to-type.c',
@@ -751,6 +756,11 @@ benchmark(
     executable('bench-compose', 'bench/compose.c', dependencies: test_dep),
     env: bench_env,
 )
+benchmark(
+    'atom',
+    executable('bench-atom', 'bench/atom.c', dependencies: test_dep),
+    env: bench_env,
+)
 if get_option('enable-x11')
   benchmark(
       'x11',