[pango] Add pango-list to meson build



commit 6b2c48571b31f95b68214752ce89e11f46b4b731
Author: Matthias Clasen <mclasen redhat com>
Date:   Wed Jul 18 22:26:20 2018 -0400

    Add pango-list to meson build

 utils/meson.build | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
---
diff --git a/utils/meson.build b/utils/meson.build
index a0043fc7..3adcc32f 100644
--- a/utils/meson.build
+++ b/utils/meson.build
@@ -56,3 +56,25 @@ if help2man.found()
                 install: true,
                 install_dir: join_paths(pango_datadir, 'man/man1'))
 endif
+
+if cairo_dep.found()
+  pango_list_sources = [
+    'pango-list.c',
+  ]
+
+  pango_list_deps = [
+    pango_deps,
+    libpango_dep,
+    libpangocairo_dep
+  ]
+
+  pango_list = executable('pango-list', pango_list_sources,
+                          dependencies: pango_list_deps,
+                          include_directories: [ root_inc ],
+                          install: true,
+                          c_args: [
+                           '-DPACKAGE_NAME="@0@"'.format(meson.project_name()),
+                           '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()),
+                          ])
+
+endif


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]