comparison OrthancServer/CMakeLists.txt @ 4785:61da49321754 openssl-3.x

integration mainline->openssl-3.x
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 30 Aug 2021 22:21:24 +0200
parents f0038043fb97 31e12d2ce275
children 2e71a08eea15
comparison
equal deleted inserted replaced
4760:b2417ac5055a 4785:61da49321754
383 ${ORTHANC_RESOURCES} 383 ${ORTHANC_RESOURCES}
384 ) 384 )
385 385
386 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES}) 386 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES})
387 387
388 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase")
389 # The link flag below hides all the global functions so that a Linux
390 # Standard Base (LSB) build of Orthanc can load plugins that are not
391 # built using LSB (new in Orthanc 1.9.7)
392 set_property(
393 TARGET Orthanc
394 PROPERTY LINK_FLAGS "-Wl,--version-script=${CMAKE_SOURCE_DIR}/Resources/VersionScriptOrthanc.map"
395 )
396 endif()
397
388 install( 398 install(
389 TARGETS Orthanc 399 TARGETS Orthanc
390 RUNTIME DESTINATION sbin 400 RUNTIME DESTINATION sbin
391 ) 401 )
392 402