Mercurial > hg > orthanc
changeset 4391:0c4ff5609548
upgraded to jsoncpp 1.9.4
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 21 Dec 2020 08:47:29 +0100 |
parents | ee846712f5df |
children | 3af1d763763a |
files | NEWS OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake OrthancServer/UnitTestsSources/VersionsTests.cpp |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/NEWS Mon Dec 21 08:41:13 2020 +0100 +++ b/NEWS Mon Dec 21 08:47:29 2020 +0100 @@ -2,7 +2,7 @@ =============================== * Upgraded dependencies for static builds (notably on Windows): - - jsoncpp 1.9.3 + - jsoncpp 1.9.4 Version 1.8.2 (2020-12-18)
--- a/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Mon Dec 21 08:41:13 2020 +0100 +++ b/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Mon Dec 21 08:47:29 2020 +0100 @@ -27,9 +27,9 @@ set(JSONCPP_MD5 "3a8072ca6a1fa9cbaf7715ae625f134f") add_definitions(-DORTHANC_LEGACY_JSONCPP=1) else() - set(JSONCPP_SOURCES_DIR ${CMAKE_BINARY_DIR}/jsoncpp-1.9.3) - set(JSONCPP_URL "http://orthanc.osimis.io/ThirdPartyDownloads/jsoncpp-1.9.3.tar.gz") - set(JSONCPP_MD5 "288bedd396758709e517fcc4acad6ac2") + set(JSONCPP_SOURCES_DIR ${CMAKE_BINARY_DIR}/jsoncpp-1.9.4) + set(JSONCPP_URL "http://orthanc.osimis.io/ThirdPartyDownloads/jsoncpp-1.9.4.tar.gz") + set(JSONCPP_MD5 "4757b26ec89798c5247fa638edfdc446") add_definitions(-DORTHANC_LEGACY_JSONCPP=0) set(JSONCPP_CXX11 ON) endif()
--- a/OrthancServer/UnitTestsSources/VersionsTests.cpp Mon Dec 21 08:41:13 2020 +0100 +++ b/OrthancServer/UnitTestsSources/VersionsTests.cpp Mon Dec 21 08:47:29 2020 +0100 @@ -190,7 +190,7 @@ #if ORTHANC_LEGACY_JSONCPP == 1 ASSERT_STREQ("0.10.6", JSONCPP_VERSION_STRING); #elif ORTHANC_LEGACY_JSONCPP == 0 - ASSERT_STREQ("1.9.3", JSONCPP_VERSION_STRING); + ASSERT_STREQ("1.9.4", JSONCPP_VERSION_STRING); #else # error Macro ORTHANC_LEGACY_JSONCPP should be set #endif