Skip to content

Commit 004fefc

Browse files
committed
fix ENABLE_PQC_DBG_LOG flag
1 parent a739940 commit 004fefc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ option(ENABLE_CRYPTO_REFRESH "Enable crypto-refresh support (v6)")
8383
option(ENABLE_PQC "Enable PQC support")
8484

8585
# Note: The following flag is only temporary and will be removed once POC is in a stable state
86-
if (DEFINED ENABLE_PQC_DBG_LOG)
86+
option(ENABLE_PQC_DBG_LOG "Enable debug logging for PQC" OFF)
87+
if (ENABLE_PQC_DBG_LOG)
8788
add_definitions(-DENABLE_PQC_DBG_LOG)
8889
endif()
8990

0 commit comments

Comments
 (0)