18 lines
686 B
CMake
18 lines
686 B
CMake
file(GLOB hdrs "*.h")
|
|
file(GLOB srcs "*.cpp")
|
|
|
|
add_library(tinyxml2_objs OBJECT ${srcs} ${hdrs})
|
|
|
|
# TODO: needs to be fixed upstream
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
|
|
target_compile_options(tinyxml2_objs PRIVATE -Wno-suggest-attribute=format)
|
|
endif()
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
target_compile_options_safe(tinyxml2_objs -Wno-extra-semi-stmt)
|
|
target_compile_options_safe(tinyxml2_objs -Wno-implicit-fallthrough)
|
|
target_compile_options_safe(tinyxml2_objs -Wno-suggest-override)
|
|
target_compile_options_safe(tinyxml2_objs -Wno-suggest-destructor-override)
|
|
target_compile_options_safe(tinyxml2_objs -Wno-zero-as-null-pointer-constant)
|
|
endif()
|
|
|