From fd4f00ee91e79cc7fde21bc2177adb5a4eb0feff Mon Sep 17 00:00:00 2001 From: Caoimhe Date: Sat, 13 May 2023 12:58:26 +0100 Subject: AK: Add `SPICE_AGENT_DEBUG` flag --- AK/Debug.h.in | 4 ++++ Meta/CMake/all_the_debug_macros.cmake | 1 + 2 files changed, 5 insertions(+) diff --git a/AK/Debug.h.in b/AK/Debug.h.in index 035f7270c9..b81b9a0853 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -394,6 +394,10 @@ # cmakedefine01 SPAM_DEBUG #endif +#ifndef SPICE_AGENT_DEBUG +# cmakedefine01 SPICE_AGENT_DEBUG +#endif + #ifndef SQL_DEBUG # cmakedefine01 SQL_DEBUG #endif diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index 32a9cda41c..6c5e6d7a5a 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -160,6 +160,7 @@ set(SMP_DEBUG ON) set(SOCKET_DEBUG ON) set(SOLITAIRE_DEBUG ON) set(SPAM_DEBUG ON) +set(SPICE_AGENT_DEBUG ON) set(SQL_DEBUG ON) set(SQLSERVER_DEBUG ON) set(STORAGE_DEVICE_DEBUG ON) -- cgit v1.2.3