summaryrefslogtreecommitdiff
path: root/po/meson.build
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2021-06-08 22:55:49 -0400
committerLogan Rathbone <poprocks@gmail.com>2021-06-08 22:55:49 -0400
commitae51b769019ea5e4c32ec6e386f3d2183562c1cb (patch)
tree7944059592bcd59a662a35c18705c6c242263217 /po/meson.build
parentRemove superfluous MAINTAINERS file. (diff)
downloadzenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.tar.gz
zenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.tar.bz2
zenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.zip
Port build system from autotools to meson.
Diffstat (limited to 'po/meson.build')
-rw-r--r--po/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/po/meson.build b/po/meson.build
new file mode 100644
index 00000000..66362aa5
--- /dev/null
+++ b/po/meson.build
@@ -0,0 +1,4 @@
+i18n.gettext(
+ meson.project_name(),
+ preset: 'glib'
+)
bgstack15