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

Skip test cases/frameworks/6 gettext if gettext or libintl not found
pull/3060/head
Jon Turney 7 years ago
parent 7d974cd962
commit 5ff84e4f50
  1. 9
      test cases/frameworks/6 gettext/meson.build

@ -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…
Cancel
Save