8 lines
232 B
CMake
8 lines
232 B
CMake
file(GLOB hdrs "*.h")
|
|
file(GLOB srcs "*.cpp")
|
|
|
|
add_library(simplecpp_objs OBJECT ${srcs} ${hdrs})
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
target_compile_options_safe(simplecpp_objs -Wno-zero-as-null-pointer-constant)
|
|
endif()
|