Echo Writes Code

CrucibleAddLibrary.cmake

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

include(CrucibleEnablePlatformPreprocessorSymbols)

function(crucible_add_library TARGET_NAME)
  add_library(${ARGV})
  crucible_enable_platform_preprocessor_symbols("${TARGET_NAME}")
endfunction()