summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-02-12 08:05:04 -0500
committerMatthias Clasen <mclasen@redhat.com>2022-02-15 07:50:34 -0600
commitcd08fb7402498e6ea542b4628447547477ac212e (patch)
tree674f7de9ab346f876310f2803c140c6c428df317
parent7074e8fe0de20032fc8316ecfc65d158d5a3bbe7 (diff)
downloadpango-cd08fb7402498e6ea542b4628447547477ac212e.tar.gz
utils: Use common cflags
-rw-r--r--utils/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/meson.build b/utils/meson.build
index 6d06dbec..5072c1cc 100644
--- a/utils/meson.build
+++ b/utils/meson.build
@@ -34,7 +34,7 @@ pango_view = executable('pango-view', pango_view_sources,
dependencies: pango_view_deps,
include_directories: [ root_inc ],
install: true,
- c_args: [
+ c_args: common_cflags + pango_debug_cflags + [
'-DPACKAGE_NAME="@0@"'.format(meson.project_name()),
'-DPACKAGE_VERSION="@0@"'.format(meson.project_version()),
])
@@ -74,7 +74,7 @@ if cairo_dep.found()
dependencies: pango_list_deps,
include_directories: [ root_inc ],
install: true,
- c_args: [
+ c_args: common_cflags + pango_debug_cflags + [
'-DPACKAGE_NAME="@0@"'.format(meson.project_name()),
'-DPACKAGE_VERSION="@0@"'.format(meson.project_version()),
])
@@ -94,7 +94,7 @@ if cairo_dep.found()
dependencies: pango_segmentation_deps,
include_directories: [ root_inc ],
install: true,
- c_args: [
+ c_args: common_cflags + pango_debug_cflags + [
'-DPACKAGE_NAME="@0@"'.format(meson.project_name()),
'-DPACKAGE_VERSION="@0@"'.format(meson.project_version()),
])