Skip test cases/frameworks/6 gettext if prereqs not found

Skip test cases/frameworks/6 gettext if gettext or libintl not found
This commit is contained in:
Jon Turney 2018-02-12 16:30:35 +00:00
parent 7d974cd962
commit 5ff84e4f50
1 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,14 @@
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')