comparison Resources/CMake/OrthancFrameworkConfiguration.cmake @ 2465:80c1ed8e7283

uuid not available if sandboxed
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Jan 2018 10:02:08 +0100
parents be5c0f4155f6
children 9c54c40eaf25
comparison
equal deleted inserted replaced
2464:61fc5133e5d5 2465:80c1ed8e7283
331 ##################################################################### 331 #####################################################################
332 ## Inclusion of mandatory third-party dependencies 332 ## Inclusion of mandatory third-party dependencies
333 ##################################################################### 333 #####################################################################
334 334
335 include(${CMAKE_CURRENT_LIST_DIR}/JsonCppConfiguration.cmake) 335 include(${CMAKE_CURRENT_LIST_DIR}/JsonCppConfiguration.cmake)
336 include(${CMAKE_CURRENT_LIST_DIR}/UuidConfiguration.cmake)
337 include(${CMAKE_CURRENT_LIST_DIR}/ZlibConfiguration.cmake) 336 include(${CMAKE_CURRENT_LIST_DIR}/ZlibConfiguration.cmake)
337
338 if (NOT ORTHANC_SANDBOXED)
339 include(${CMAKE_CURRENT_LIST_DIR}/UuidConfiguration.cmake)
340 endif()
338 341
339 # We put Boost as the last dependency, as it is the heaviest to 342 # We put Boost as the last dependency, as it is the heaviest to
340 # configure, which allows to quickly spot problems when configuring 343 # configure, which allows to quickly spot problems when configuring
341 # static builds in other dependencies 344 # static builds in other dependencies
342 include(${CMAKE_CURRENT_LIST_DIR}/BoostConfiguration.cmake) 345 include(${CMAKE_CURRENT_LIST_DIR}/BoostConfiguration.cmake)