diff options
author | Itamar <itamar8910@gmail.com> | 2021-01-23 16:55:19 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-27 21:10:57 +0100 |
commit | fa18010477821f114953015677daa789580a4683 (patch) | |
tree | 8449129a0a08038cb261284e5754e0d0673dc070 /Meta | |
parent | 8ed96eb27c332bd86dafd3da78b362668e00e0b9 (diff) | |
download | serenity-fa18010477821f114953015677daa789580a4683.zip |
HackStudio: Integate with C++ parser-based autocomplete
By default, C++ auto completion will still be performed by the
lexer-based logic.
However, the parser-based logic can be switched on via the menubar.
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/CMake/all_the_debug_macros.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index 2d93233773..339a9baae4 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -160,6 +160,9 @@ set(VOLATILE_PAGE_RANGES_DEBUG ON) set(WSMESSAGELOOP_DEBUG ON) set(GPT_DEBUG ON) set(CPP_DEBUG ON) +set(DEBUG_SPAM ON) +set(DEBUG_CPP_LANGUAGE_SERVER ON) +set(DEBUG_AUTOCOMPLETE ON) # False positive: DEBUG is a flag but it works differently. # set(DEBUG ON) |