summaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2019-03-21 16:36:07 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-03-30 21:15:41 +0100
commit79bd7e5a84b01e4a50365deca3ef799acd8c998b (patch)
tree1b890c265f020a5a200a9ffc6f66c8efc3fd4218 /help
parent9b22a0251053b5869d6c2505aa9e9f34f16e0183 (diff)
downloadglade-79bd7e5a84b01e4a50365deca3ef799acd8c998b.tar.gz
build: Port to meson build system
meson is a build system focused on speed an ease of use, which helps speeding up the software development. meson build system has been added along with autotools.
Diffstat (limited to 'help')
-rw-r--r--help/LINGUAS25
-rw-r--r--help/meson.build11
2 files changed, 36 insertions, 0 deletions
diff --git a/help/LINGUAS b/help/LINGUAS
new file mode 100644
index 00000000..e26b5c6b
--- /dev/null
+++ b/help/LINGUAS
@@ -0,0 +1,25 @@
+# please keep this list sorted alphabetically
+#
+bg
+ca
+cs
+de
+el
+en_GB
+es
+eu
+fr
+gl
+hi
+hu
+it
+ja
+ko
+oc
+pl
+pt_BR
+ru
+sl
+sv
+uk
+zh_CN
diff --git a/help/meson.build b/help/meson.build
new file mode 100644
index 00000000..bae05aa7
--- /dev/null
+++ b/help/meson.build
@@ -0,0 +1,11 @@
+sources = [
+ 'index.docbook',
+ 'legal.xml',
+]
+
+gnome.yelp(
+ glade_name,
+ sources: sources,
+ media: 'figures/main-window.png',
+ symlink_media: true,
+)