From 3093bdb0777db1b1431bede19373ae5eac98accd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 22 Jul 2017 15:15:45 +0200 Subject: [PATCH] build: Don't include c_args in dependency The defines are only relevant for compiling libgvc itself, not for any consumers of the library. In fact, setting G_LOG_DOMAIN is likely to conflict with the log domain defined by the including project ... --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 238f608..82863b3 100644 --- a/meson.build +++ b/meson.build @@ -142,6 +142,5 @@ libgvc_dep = declare_dependency( link_with: libgvc, include_directories: libgvc_inc, dependencies: libgvc_deps, - compile_args: c_args, sources: libgvc_gir_sources + libgvc_no_gir_sources )