summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaoimhe <caoimhebyrne06@gmail.com>2023-05-13 12:58:26 +0100
committerAndreas Kling <kling@serenityos.org>2023-05-21 18:45:53 +0200
commitfd4f00ee91e79cc7fde21bc2177adb5a4eb0feff (patch)
tree4d9e6e64443a38066a3616c4d0256968bcfc7c1a
parent3c0b6919f7104723627df9f4a324332ad6890cbf (diff)
downloadserenity-fd4f00ee91e79cc7fde21bc2177adb5a4eb0feff.zip
AK: Add `SPICE_AGENT_DEBUG` flag
-rw-r--r--AK/Debug.h.in4
-rw-r--r--Meta/CMake/all_the_debug_macros.cmake1
2 files changed, 5 insertions, 0 deletions
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)