summaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-18 15:55:33 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-22 16:23:18 +0100
commit84701202b0d1de4273cb39393007aad00e0450e2 (patch)
tree5d0dc6c7d0339ce26fda4eb9fd4aa086307a311d /help
parent86b8affb423a1acf298f97ab85f72e89c8d1dd4c (diff)
downloadd-feet-84701202b0d1de4273cb39393007aad00e0450e2.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. This patch adds meson support along autotools.
Diffstat (limited to 'help')
-rw-r--r--help/LINGUAS8
-rw-r--r--help/meson.build10
2 files changed, 18 insertions, 0 deletions
diff --git a/help/LINGUAS b/help/LINGUAS
new file mode 100644
index 0000000..4a62a25
--- /dev/null
+++ b/help/LINGUAS
@@ -0,0 +1,8 @@
+# please keep this list sorted alphabetically
+cs
+de
+el
+es
+pl
+pt_BR
+sv
diff --git a/help/meson.build b/help/meson.build
new file mode 100644
index 0000000..328a315
--- /dev/null
+++ b/help/meson.build
@@ -0,0 +1,10 @@
+sources = [
+ 'basics.page',
+ 'index.page',
+]
+
+gnome.yelp(
+ df_name,
+ sources: sources,
+ media: 'figures/icon.png',
+)