1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

AK+Meta: Add a debug option for Solitaire

This commit is contained in:
Timothy Flynn 2021-05-15 22:12:22 -04:00 committed by Andreas Kling
parent 68e86dc804
commit ce030ca584
2 changed files with 5 additions and 0 deletions

View file

@ -342,6 +342,10 @@
#cmakedefine01 SH_LANGUAGE_SERVER_DEBUG #cmakedefine01 SH_LANGUAGE_SERVER_DEBUG
#endif #endif
#ifndef SOLITAIRE_DEBUG
#cmakedefine01 SOLITAIRE_DEBUG
#endif
#ifndef SPAM_DEBUG #ifndef SPAM_DEBUG
#cmakedefine01 SPAM_DEBUG #cmakedefine01 SPAM_DEBUG
#endif #endif

View file

@ -178,6 +178,7 @@ set(LANGUAGE_SERVER_DEBUG ON)
set(GL_DEBUG ON) set(GL_DEBUG ON)
set(WASM_BINPARSER_DEBUG ON) set(WASM_BINPARSER_DEBUG ON)
set(PDF_DEBUG ON) set(PDF_DEBUG ON)
set(SOLITAIRE_DEBUG ON)
# False positive: DEBUG is a flag but it works differently. # False positive: DEBUG is a flag but it works differently.
# set(DEBUG ON) # set(DEBUG ON)