Echo Writes Code

AddCrucibleExecutable.cmake

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

include(EnableCompilerWarnings)

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