blob: e02234b56003a4af9c583c0b0c279172c9c04621 [file] [log] [blame]
project('gettext example', 'c')
gettext = find_program('gettext', required: false)
if not gettext.found()
error('MESON_SKIP_TEST gettext not found.')
endif
if not meson.get_compiler('c').has_header('libintl.h')
error('MESON_SKIP_TEST libintl.h not found.')
endif
i18n = import('i18n')
subdir('po')
subdir('src')
subdir('data')