Skip to content

Commit f605f7a

Browse files
committed
build: refactor: set debug definitions in main CMakeLists
No functional change. This is a simple move required the next commit.
1 parent d7f56cc commit f605f7a

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,15 @@ include(ProcessConfigurations)
235235
include(TryAppendCXXFlags)
236236
include(TryAppendLinkerFlag)
237237

238+
# Redefine/adjust per-configuration flags.
239+
target_compile_definitions(core_interface_debug INTERFACE
240+
DEBUG
241+
DEBUG_LOCKORDER
242+
DEBUG_LOCKCONTENTION
243+
RPC_DOC_CHECK
244+
ABORT_ON_FAILED_ASSUME
245+
)
246+
238247
if(WIN32)
239248
#[=[
240249
This build system supports two ways to build binaries for Windows.

cmake/module/ProcessConfigurations.cmake

-8
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,6 @@ endfunction()
119119

120120
set_default_config(RelWithDebInfo)
121121

122-
# Redefine/adjust per-configuration flags.
123-
target_compile_definitions(core_interface_debug INTERFACE
124-
DEBUG
125-
DEBUG_LOCKORDER
126-
DEBUG_LOCKCONTENTION
127-
RPC_DOC_CHECK
128-
ABORT_ON_FAILED_ASSUME
129-
)
130122
# We leave assertions on.
131123
if(MSVC)
132124
remove_cxx_flag_from_all_configs(/DNDEBUG)

0 commit comments

Comments
 (0)