From 55b7b8e93080aa7e9c52db505da32dfa00b4b4bc Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sun, 18 Apr 2021 17:34:17 -0400 Subject: [PATCH] AK+Meta: Add a debug option for LibSQL --- 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 d89845cea48..afb24e9a087 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -358,6 +358,10 @@ #cmakedefine01 SPAM_DEBUG #endif +#ifndef SQL_DEBUG +#cmakedefine01 SQL_DEBUG +#endif + #ifndef STRINGIMPL_DEBUG #cmakedefine01 STRINGIMPL_DEBUG #endif diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index 93f239574a9..f570864d553 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -69,6 +69,7 @@ set(MARKDOWN_DEBUG ON) set(REGEX_DEBUG ON) set(TLS_DEBUG ON) set(SPAM_DEBUG ON) +set(SQL_DEBUG ON) set(PARSER_DEBUG ON) set(TOKENIZER_TRACE_DEBUG ON) set(IMAGE_LOADER_DEBUG ON)