annotate Resources/Orthanc/Plugins/OrthancPluginsExports.cmake @ 37:680b1b1b9621

use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 06 Jul 2020 16:42:47 +0200
parents
children f6fe71ef20c1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
37
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 # In Orthanc <= 1.7.1, the instructions below were part of
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 # "Compiler.cmake", and were protected by the (now unused) option
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 # "ENABLE_PLUGINS_VERSION_SCRIPT" in CMake
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
5 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD")
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${CMAKE_CURRENT_LIST_DIR}/VersionScriptPlugins.map")
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -exported_symbols_list ${CMAKE_CURRENT_LIST_DIR}/ExportedSymbolsPlugins.list")
680b1b1b9621 use of OrthancPluginsExports.cmake, link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 endif()