Skip to content

Commit

Permalink
Meson: use glib preset for i18n (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit authored Aug 29, 2024
1 parent ca57878 commit d2acf32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions po/extra/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
i18n.gettext('extra',
args: ['--directory='+meson.source_root(), '--from-code=UTF-8'],
install: false,
args: '--directory=' + meson.source_root(),
preset: 'glib',
install: false
)
7 changes: 4 additions & 3 deletions po/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
i18n.gettext(meson.project_name(),
args: ['--directory='+meson.source_root()],
i18n.gettext(meson.project_name (),
args: '--directory=' + meson.source_root(),
preset: 'glib'
)
subdir('extra')

subdir ('extra')

0 comments on commit d2acf32

Please sign in to comment.