Echo Writes Code

CrucibleAddExecutable.cmake

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

include(CrucibleEnablePlatformPreprocessorSymbols)

function(crucible_add_executable TARGET_NAME)
  add_executable(${ARGV})
  crucible_enable_platform_preprocessor_symbols("${TARGET_NAME}")
endfunction()