The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
24 lines
502 B
5 years ago
|
project('gettext example', 'c')
|
||
|
|
||
|
gettext = find_program('gettext', required: false)
|
||
|
if not gettext.found()
|
||
|
error('MESON_SKIP_TEST gettext not found.')
|
||
|
endif
|
||
|
|
||
|
xgettext = find_program('xgettext', required: false)
|
||
|
if not xgettext.found()
|
||
|
error('MESON_SKIP_TEST xgettext 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')
|
||
|
subdir('data2')
|
||
|
subdir('generated')
|