Move the various tools to a tools/ directory
authorPeter Hutterer <peter.hutterer@who-t.net>
Mon, 22 Jun 2020 03:07:46 +0000 (13:07 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Thu, 25 Jun 2020 00:32:08 +0000 (10:32 +1000)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
meson.build
tools/how-to-type.c [moved from test/how-to-type.c with 100% similarity]
tools/print-compiled-keymap.c [moved from test/print-compiled-keymap.c with 100% similarity]
tools/rmlvo-to-kccgst.c [moved from test/rmlvo-to-kccgst.c with 100% similarity]
tools/rmlvo-to-keymap.c [moved from test/rmlvo-to-keymap.c with 100% similarity]

index 388906a..2033000 100644 (file)
@@ -444,10 +444,10 @@ executable('fuzz-compose', 'fuzz/compose/target.c', dependencies: test_dep)
 
 # Demo programs.
 if cc.has_header_symbol('getopt.h', 'getopt_long', prefix: '#define _GNU_SOURCE')
-    executable('rmlvo-to-kccgst', 'test/rmlvo-to-kccgst.c', dependencies: test_dep)
-    executable('rmlvo-to-keymap', 'test/rmlvo-to-keymap.c', dependencies: test_dep)
-    executable('print-compiled-keymap', 'test/print-compiled-keymap.c', dependencies: test_dep)
-    executable('how-to-type', 'test/how-to-type.c', dependencies: test_dep)
+    executable('rmlvo-to-kccgst', 'tools/rmlvo-to-kccgst.c', dependencies: test_dep)
+    executable('rmlvo-to-keymap', 'tools/rmlvo-to-keymap.c', dependencies: test_dep)
+    executable('print-compiled-keymap', 'tools/print-compiled-keymap.c', dependencies: test_dep)
+    executable('how-to-type', 'tools/how-to-type.c', dependencies: test_dep)
 endif
 if cc.has_header('linux/input.h')
     executable('interactive-evdev', 'test/interactive-evdev.c', dependencies: test_dep)
similarity index 100%
rename from test/how-to-type.c
rename to tools/how-to-type.c