Mercurial > hg > orthanc
changeset 6541:770d6037b79f
removed stub library boost_system from find_package()
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Tue, 09 Dec 2025 14:51:25 +0100 |
| parents | 59888c43f6b4 |
| children | 6b9133fa6e88 |
| files | OrthancFramework/Resources/CMake/BoostConfiguration.cmake OrthancFramework/UnitTestsSources/CMakeLists.txt |
| diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Resources/CMake/BoostConfiguration.cmake Tue Dec 09 13:52:07 2025 +0100 +++ b/OrthancFramework/Resources/CMake/BoostConfiguration.cmake Tue Dec 09 14:51:25 2025 +0100 @@ -38,7 +38,7 @@ list(APPEND ORTHANC_BOOST_COMPONENTS locale) endif() - list(APPEND ORTHANC_BOOST_COMPONENTS filesystem thread system date_time regex iostreams) + list(APPEND ORTHANC_BOOST_COMPONENTS filesystem thread date_time regex iostreams) find_package(Boost COMPONENTS ${ORTHANC_BOOST_COMPONENTS}) if (NOT Boost_FOUND)
--- a/OrthancFramework/UnitTestsSources/CMakeLists.txt Tue Dec 09 13:52:07 2025 +0100 +++ b/OrthancFramework/UnitTestsSources/CMakeLists.txt Tue Dec 09 14:51:25 2025 +0100 @@ -66,7 +66,7 @@ endif() link_libraries(pugixml) - find_package(Boost COMPONENTS filesystem thread system date_time iostreams locale regex) + find_package(Boost COMPONENTS filesystem thread date_time iostreams locale regex) if (NOT Boost_FOUND) message(FATAL_ERROR "Unable to locate Boost on this system") endif()
