We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e319619 commit 36e5166Copy full SHA for 36e5166
Builds/CMake/RippledCompiler.cmake
@@ -17,7 +17,9 @@ target_compile_features (common INTERFACE cxx_std_20)
17
target_compile_definitions (common
18
INTERFACE
19
$<$<CONFIG:Debug>:DEBUG _DEBUG>
20
- $<$<AND:$<BOOL:${profile}>,$<NOT:$<BOOL:${assert}>>>:NDEBUG>)
+ $<$<AND:$<BOOL:${profile}>,$<NOT:$<BOOL:${assert}>>>:NDEBUG>
21
+ # TODO: Remove once we have migrated functions from OpenSSL 1.x to 3.x.
22
+ OPENSSL_SUPPRESS_DEPRECATED)
23
# ^^^^ NOTE: CMAKE release builds already have NDEBUG
24
# defined, so no need to add it explicitly except for
25
# this special case of (profile ON) and (assert OFF)
0 commit comments