2016-08-06 18:21:54 +02:00
|
|
|
file(GLOB hdrs "*.h")
|
|
|
|
file(GLOB srcs "*.cpp")
|
|
|
|
|
|
|
|
add_library(simplecpp_objs OBJECT ${srcs} ${hdrs})
|
2020-03-31 09:33:58 +02:00
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
add_library(simplecpp_objs_sanitized OBJECT ${srcs} ${hdrs})
|
|
|
|
target_compile_options(simplecpp_objs_sanitized PRIVATE -fsanitize=address)
|
|
|
|
endif()
|
2016-08-06 18:21:54 +02:00
|
|
|
|
|
|
|
|