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-12 08:05:04 -0500
commit6445603d5257e48466f622453b0949cf7c54d367 (patch)
tree13bb6b8ae03a5cf443bd22ebf516a40c1f66917c
parent9aeb507f357ac678ca86c4de01e4217bd6c1a33f (diff)
downloadpango-6445603d5257e48466f622453b0949cf7c54d367.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()),
])