You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
Meson
17 lines
368 B
Meson
2 years ago
|
gtext = find_program('xgettext', required: get_option('nls'))
|
||
|
if not gtext.found()
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
i18n = import('i18n')
|
||
|
|
||
|
i18n.gettext(
|
||
|
'exiv2',
|
||
|
preset: 'glib',
|
||
|
args: [
|
||
|
'--files-from=@0@/POTFILES.in'.format(meson.current_source_dir()),
|
||
|
'--copyright-holder="Exiv2 authors"',
|
||
|
'--msgid-bugs-address=https://github.com/Exiv2/exiv2/issues',
|
||
|
],
|
||
|
)
|