aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks/6 gettext/meson.build
blob: 2640ab29c7e4cd21b9f36e5b05fcd9146ea1aabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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

intl = dependency('intl', required: false, static: get_option('static'))
if not intl.found()
  error('MESON_SKIP_TEST libintl/gettext functions not found.')
endif

i18n = import('i18n')

subdir('po')
subdir('src')
subdir('data')
subdir('data2')
subdir('generated')