blob: 8f075704194cd7f702675d85105989da86d78615 (
plain)
1
2
3
4
5
6
7
8
9
10
|
if not find_program('gettext', required: get_option('i18n')).found()
subdir_done()
endif
i18n = import('i18n')
i18n.gettext(
meson.project_name(),
preset: 'glib',
data_dirs: '.'
)
|