From d4e536ebc6ebca2dce3292b6e6e99b5eb6eb4e50 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 8 Aug 2024 10:06:37 -0400 Subject: [PATCH] image-tool: build with AVIF_DEBUG for now This makes it easier to find out whats going on while the avif loader is still frequently touched. --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson.build b/tools/meson.build index 628845b15f..f48a90bb0f 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -80,7 +80,7 @@ foreach tool: gtk_tools exe = executable(tool_name, sources: tool_srcs, include_directories: [confinc], - c_args: common_cflags + [ '-DBUILD_TOOLS' ], + c_args: common_cflags + [ '-DBUILD_TOOLS', '-DAVIF_DEBUG' ], dependencies: tool_deps, install: true, )