summaryrefslogtreecommitdiff
path: root/cmake/utils/DebugTargets.cmake
blob: 78899213e0fb4008fc22a28cf5939ea5509040fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Utility functions for Ouroboros target configuration
set(OUROBOROS_DEBUG_CONFIGS
  Debug
  DebugASan
  DebugTSan
  DebugLSan
  DebugUSan
  DebugAnalyzer
)

# Add CONFIG_OUROBOROS_DEBUG definition for debug build types
function(ouroboros_target_debug_definitions target)
  list(JOIN OUROBOROS_DEBUG_CONFIGS "," _configs)
  target_compile_definitions(${target} PRIVATE
    "$<$<CONFIG:${_configs}>:CONFIG_OUROBOROS_DEBUG>")
endfunction()