diff options
author | Phil Jones <philj56@gmail.com> | 2022-10-18 19:33:41 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-10-18 19:33:41 +0100 |
commit | 5482f0be746a98bdd6b2c54183b54dd2ff2a0192 (patch) | |
tree | dc58c6a1c486432f853bd3a5f9f7c78767c7292a /meson.build | |
parent | 8872f664671711b97e02fe97f31746b5e158e627 (diff) |
Improve UTF-8 handling.
This should allow case-insensitive matching for non-Latin characters,
and fix matching for characters with diacritics.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 9f2dcec..97f8eae 100644 --- a/meson.build +++ b/meson.build @@ -108,6 +108,7 @@ tofi_sources = files( 'src/shm.c', 'src/string_vec.c', 'src/surface.c', + 'src/utf8.c', 'src/wlr-layer-shell-unstable-v1.c', 'src/xmalloc.c', ) @@ -119,6 +120,7 @@ compgen_sources = files( 'src/log.c', 'src/mkdirp.c', 'src/string_vec.c', + 'src/utf8.c', 'src/xmalloc.c' ) @@ -183,6 +185,7 @@ executable( executable( 'tofi-compgen', compgen_sources, + dependencies: [glib], install: false ) |