comparison OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake @ 4105:c02a2d9efbc2

move FromDcmtkBridge::ExecuteToDicom() to LuaFunctionCall, to remove dependency of DCMTK on Lua
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 06 Jul 2020 13:48:10 +0200
parents 2ace6dc9b1d7
children 29cb9e47681f
comparison
equal deleted inserted replaced
4104:d5c09b5f882f 4105:c02a2d9efbc2
436 message(FATAL_ERROR "Please install the libjsoncpp-dev package") 436 message(FATAL_ERROR "Please install the libjsoncpp-dev package")
437 endif() 437 endif()
438 438
439 # Look for mandatory dependency Boost (cf. BoostConfiguration.cmake) 439 # Look for mandatory dependency Boost (cf. BoostConfiguration.cmake)
440 include(FindBoost) 440 include(FindBoost)
441 find_package(Boost COMPONENTS filesystem thread system date_time regex) 441 find_package(Boost COMPONENTS filesystem thread system date_time regex ${ORTHANC_BOOST_COMPONENTS})
442 442
443 if (NOT Boost_FOUND) 443 if (NOT Boost_FOUND)
444 message(FATAL_ERROR "Unable to locate Boost on this system") 444 message(FATAL_ERROR "Unable to locate Boost on this system")
445 endif() 445 endif()
446 446