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