From cbfaebfa830f1a51e41a3c903b804eaed8328ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 22 Mar 2017 13:53:25 +0000 Subject: [PATCH] meson: add po and po-properties --- meson.build | 3 +++ po-properties/meson.build | 3 +++ po/meson.build | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 po-properties/meson.build create mode 100644 po/meson.build diff --git a/meson.build b/meson.build index 7cda4248c4..0665c6d830 100644 --- a/meson.build +++ b/meson.build @@ -445,3 +445,6 @@ if host_machine.system() != 'windows' configuration : pkgconf, install_dir : pkg_install_dir) endif + +subdir('po') +subdir('po-properties') diff --git a/po-properties/meson.build b/po-properties/meson.build new file mode 100644 index 0000000000..7cb98ce815 --- /dev/null +++ b/po-properties/meson.build @@ -0,0 +1,3 @@ +i18n = import('i18n') + +i18n.gettext('gtk40-properties', preset : 'glib') diff --git a/po/meson.build b/po/meson.build new file mode 100644 index 0000000000..84e0c71ce5 --- /dev/null +++ b/po/meson.build @@ -0,0 +1,3 @@ +i18n = import('i18n') + +i18n.gettext('gtk40', preset : 'glib')