feat: added sorting options; category names are not restricted to ascii anymore; you can edit categories now

This commit is contained in:
2026-03-06 18:49:46 +03:00
parent b977901bc4
commit 95608a3fd6
7 changed files with 324 additions and 202 deletions
+6 -1
View File
@@ -24,11 +24,16 @@ test_moemoji = executable('test-moemoji',
c_args: ['-DSRCDIR="' + meson.project_source_root() + '"'],
)
test('moemoji-unit', test_moemoji)
schema_dir = meson.project_build_root() / 'data'
test('moemoji-unit', test_moemoji,
env: ['GSETTINGS_SCHEMA_DIR=' + schema_dir],
)
custom_target('run-unit-tests',
command: [test_moemoji],
output: 'test-stamp',
build_by_default: true,
depends: test_moemoji,
env: ['GSETTINGS_SCHEMA_DIR=' + schema_dir],
)