summaryrefslogtreecommitdiff
path: root/po/meson.build
blob: ce4168bd0d860c3e16d8ae40bef41de9a1bdfc07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dep_intl = []

if get_option('nls')
  i18n = import('i18n')
  i18n.gettext('enlightenment',
             args: [
                '--keyword=_',
                '--keyword=d_:1',
                '--keyword=P_:1,2',
                '--keyword=dP_:1,2',
                '--keyword=N_',
                '--keyword=NP_:1,2',
                '--from-code=UTF-8',
                '--foreign-user'
              ])
  config_h.set('HAVE_GETTEXT', '1')
  dep_intl = cc.find_library('intl', required : false)
endif