mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-08-03 18:26:11 -04:00

Introduced a new resource compiler script kiwix-compile-i18n that processes i18n string data stored in JSON files and generates sorted C++ tables of string keys and values for all languages.
13 lines
326 B
Meson
13 lines
326 B
Meson
|
|
res_compiler = find_program('kiwix-compile-resources')
|
|
|
|
install_data(res_compiler.path(), install_dir:get_option('bindir'))
|
|
|
|
install_man('kiwix-compile-resources.1')
|
|
|
|
i18n_compiler = find_program('kiwix-compile-i18n')
|
|
|
|
install_data(i18n_compiler.path(), install_dir:get_option('bindir'))
|
|
|
|
install_man('kiwix-compile-i18n.1')
|