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:
parent
7d974cd962
commit
5ff84e4f50
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue