mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-29 05:40:20 -04:00
7 lines
297 B
Meson
7 lines
297 B
Meson
i18n = import('i18n')
|
|
add_project_arguments('-DGETTEXT_PACKAGE="' + meson.project_name().to_lower() + '"',
|
|
'-DLOCALEDIR="' + get_option('prefix') + '/' + get_option('localedir') + '"',
|
|
language:'c')
|
|
i18n.gettext(meson.project_name().to_lower(),
|
|
args: '--directory=' + meson.source_root()
|
|
)
|