forked from mindspore-Ecosystem/mindspore
25 lines
801 B
CMake
25 lines
801 B
CMake
set(tinyxml2_CXXFLAGS "-fstack-protector -D_FORTIFY_SOURCE=2 -O2 -Wno-unused-result")
|
|
set(tinyxml2_CFLAGS "-fstack-protector -D_FORTIFY_SOURCE=2 -O2")
|
|
|
|
if(ENABLE_GITEE)
|
|
set(REQ_URL "https://gitee.com/mirrors/tinyxml2/repository/archive/8.0.0.tar.gz")
|
|
set(MD5 "6a70cea637d0b17179e8bfd77860f811")
|
|
else()
|
|
set(REQ_URL "https://github.com/leethomason/tinyxml2/archive/8.0.0.tar.gz")
|
|
set(MD5 "5dc535c8b34ee621fe2128f072d275b5")
|
|
endif()
|
|
|
|
|
|
if(NOT WIN32 AND NOT APPLE)
|
|
set(tinyxml2_LDFLAGS "-Wl,-z,relro,-z,now,-z,noexecstack")
|
|
endif()
|
|
|
|
mindspore_add_pkg(tinyxml2
|
|
VER 8.0.0
|
|
LIBS tinyxml2
|
|
URL ${REQ_URL}
|
|
CMAKE_OPTION -DCMAKE_BUILD_TYPE=Release
|
|
MD5 ${MD5})
|
|
include_directories(${tinyxml2_INC})
|
|
add_library(mindspore::tinyxml2 ALIAS tinyxml2::tinyxml2)
|