diff options
author | asynts <asynts@gmail.com> | 2021-01-18 17:25:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-22 22:14:30 +0100 |
commit | ea7b7d8ceb2f48127b196a4eaf958bb387bb61da (patch) | |
tree | 81ef2a3848a8b64ed0960f0c9055c216390b8baf /Meta | |
parent | fb8d3635d912a40a66a9e4b50454cfdd83f71d16 (diff) | |
download | serenity-ea7b7d8ceb2f48127b196a4eaf958bb387bb61da.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/CMake/all_the_debug_macros.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index cba732260c..bbc5930692 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -166,11 +166,13 @@ add_compile_definitions("WAITBLOCK_DEBUG") add_compile_definitions("WAITQUEUE_DEBUG") add_compile_definitions("WEAKABLE_DEBUG") add_compile_definitions("WINDOWMANAGER_DEBUG") -add_compile_definitions("WRAPPER_GERNERATOR_DEBUG") add_compile_definitions("WSMESSAGELOOP_DEBUG") add_compile_definitions("DEBUG_SOCKET") add_compile_definitions("WSSCREEN_DEBUG") +add_compile_definitions("DEBUG_PATH") # False positive: IF_BMP_DEBUG is not actually a flag. # add_compile_definitions("IF_BMP_DEBUG") # False positive: LOG_DEBUG is a flag, but for a bitset, not a feature. # add_compile_definitions("LOG_DEBUG") +# Clogs up build: The WrapperGenerator stuff is run at compile time. +# add_compile_definitions("WRAPPER_GERNERATOR_DEBUG") |