From 2696f42144f42b1c4c270555047d40095693d3c4 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sun, 21 Jul 2024 23:37:07 +0200 Subject: Allow extending the compose key (#713) This allows adding more compose sequences without modifying en_US_UTF_8_Compose.pre. This is done by grouping sequences files that should be merged together into a directory. This also allows moving keysymdef.h into that directory.--- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 8b3c6fd..4b467ad 100644 --- a/build.gradle +++ b/build.gradle @@ -151,7 +151,7 @@ tasks.register('compileComposeSequences') { println "\nGenerating ${out}" exec { def sequences = new File(projectDir, "srcs/compose").listFiles().findAll { - it.name.endsWith(".pre") || it.name.endsWith(".json") + !it.name.endsWith(".py") && !it.name.endsWith(".md") } workingDir = projectDir commandLine("python", "srcs/compose/compile.py", *sequences) -- cgit v1.2.3