Echo Writes Code

AddCrucibleExecutable.cmake

1
2
3
4
5
6
7
8
9
10
include_guard(GLOBAL)

include(EnableCompilerWarnings)
include(EnableRuntimeSanitizers)

function(add_crucible_executable TARGET_NAME)
  add_executable(${ARGV})
  enable_compiler_warnings("${TARGET_NAME}")
  enable_runtime_sanitizers("${TARGET_NAME}")
endfunction()