mindspore/cmake/external_libs/json.cmake

27 lines
898 B
CMake
Raw Normal View History

2021-07-31 10:46:37 +08:00
if(MSVC)
set(flatbuffers_CXXFLAGS "${CMAKE_CXX_FLAGS}")
set(flatbuffers_CFLAGS "${CMAKE_CXX_FLAGS}")
set(flatbuffers_LDFLAGS "${CMAKE_SHARED_LINKER_FLAGS}")
else()
2021-12-11 18:33:42 +08:00
set(nlohmann_json373_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2")
set(nlohmann_json373_CFLAGS "-D_FORTIFY_SOURCE=2 -O2")
2021-07-31 10:46:37 +08:00
endif()
2021-01-23 20:20:31 +08:00
if(ENABLE_GITEE)
2021-12-11 18:33:42 +08:00
set(REQ_URL "https://gitee.com/mirrors/JSON-for-Modern-CPP/repository/archive/v3.7.3.zip")
set(MD5 "b758acca4f3e133bacf919e31ca302e3")
set(INCLUDE "./include")
else()
2021-12-11 18:33:42 +08:00
set(REQ_URL "https://github.com/nlohmann/json/releases/download/v3.7.3/include.zip")
set(MD5 "fb96f95cdf609143e998db401ca4f324")
set(INCLUDE "./include")
2021-01-23 20:20:31 +08:00
endif()
2021-12-11 18:33:42 +08:00
mindspore_add_pkg(nlohmann_json373
VER 3.7.3
HEAD_ONLY ${INCLUDE}
URL ${REQ_URL}
MD5 ${MD5})
2021-12-11 18:33:42 +08:00
include_directories(${nlohmann_json373_INC})
add_library(mindspore::json ALIAS nlohmann_json373)