From 30f955f73a66853d4c6b966ba231e7386182a3bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 11 Sep 2023 00:41:22 +0100 Subject: [PATCH] ges: tools: fix msvc compiler warning about G_LOG_DOMAIN redefinition cl: Command line warning D9025: overriding '/DG_LOG_DOMAIN="GES"' with '/UG_LOG_DOMAIN' Part-of: --- subprojects/gst-editing-services/tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-editing-services/tools/meson.build b/subprojects/gst-editing-services/tools/meson.build index 6a9ebfb2a2..f0473eb675 100644 --- a/subprojects/gst-editing-services/tools/meson.build +++ b/subprojects/gst-editing-services/tools/meson.build @@ -1,6 +1,6 @@ deps = [ges_dep, gstpbutils_dep, gio_dep, gstvideo_dep, gstaudio_dep] -ges_tool_args = [ges_c_args, '-UG_LOG_DOMAIN'] +ges_tool_args = ['-DHAVE_CONFIG_H'] if gstvalidate_dep.found() deps = deps + [gstvalidate_dep] ges_tool_args += ['-DGST_USE_UNSTABLE_API']