dep: Add tinyxml2

This commit is contained in:
Connor McLaughlin
2019-11-30 22:47:34 +10:00
parent 04c70b3118
commit 28a179ec1d
8 changed files with 5498 additions and 0 deletions

View File

@ -0,0 +1,14 @@
set(SRCS
include/tinyxml2.h
src/tinyxml2.cpp
)
if(WIN32)
add_library(tinyxml2 SHARED ${SRCS})
target_include_directories(tinyxml2 PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_compile_definitions(tinyxml2 PRIVATE "TINYXML2_EXPORT")
target_compile_definitions(tinyxml2 INTERFACE "TINYXML2_IMPORT")
else()
add_library(tinyxml2 ${SRCS})
target_include_directories(tinyxml2 PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
endif()