blob: 139f393e331648fc54864a12716cd29a29e9c105 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# SPDX-License-Identifier: LGPL-2.1-or-later
i18n = import('i18n')
want_translations = get_option('translations')
if want_translations
i18n.gettext(meson.project_name(),
preset : 'glib',
data_dirs : '.')
endif
|