0
|
1 # Orthanc - A Lightweight, RESTful DICOM Store
|
|
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
|
|
3 # Department, University Hospital of Liege, Belgium
|
|
4 # Copyright (C) 2017-2022 Osimis S.A., Belgium
|
|
5 # Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
|
|
6 #
|
|
7 # This program is free software: you can redistribute it and/or
|
|
8 # modify it under the terms of the GNU Lesser General Public License
|
|
9 # as published by the Free Software Foundation, either version 3 of
|
|
10 # the License, or (at your option) any later version.
|
|
11 #
|
|
12 # This program is distributed in the hope that it will be useful, but
|
|
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
15 # Lesser General Public License for more details.
|
|
16 #
|
|
17 # You should have received a copy of the GNU Lesser General Public
|
|
18 # License along with this program. If not, see
|
|
19 # <http://www.gnu.org/licenses/>.
|
|
20
|
|
21
|
|
22 #
|
|
23 # Full build, as used on the BuildBot CIS:
|
|
24 #
|
|
25 # $ LSB_CC=gcc-4.8 LSB_CXX=g++-4.8 cmake ../OrthancServer/ -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=../OrthancFramework/Resources/Toolchains/LinuxStandardBaseToolchain.cmake -DUSE_LEGACY_JSONCPP=ON -DUSE_LEGACY_LIBICU=ON -DUSE_LEGACY_BOOST=ON -DBOOST_LOCALE_BACKEND=icu -DENABLE_PKCS11=ON -G Ninja
|
|
26 #
|
|
27 # Or, more lightweight version (without libp11 and ICU):
|
|
28 #
|
|
29 # $ LSB_CC=gcc-4.8 LSB_CXX=g++-4.8 cmake ../OrthancServer/ -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=../OrthancFramework/Resources/Toolchains/LinuxStandardBaseToolchain.cmake -DUSE_LEGACY_JSONCPP=ON -DUSE_LEGACY_BOOST=ON -G Ninja
|
|
30 #
|
|
31
|
|
32 INCLUDE(CMakeForceCompiler)
|
|
33
|
|
34 SET(LSB_PATH $ENV{LSB_PATH} CACHE STRING "")
|
|
35 SET(LSB_CC $ENV{LSB_CC} CACHE STRING "")
|
|
36 SET(LSB_CXX $ENV{LSB_CXX} CACHE STRING "")
|
|
37 SET(LSB_TARGET_VERSION "4.0" CACHE STRING "")
|
|
38
|
|
39 IF ("${LSB_PATH}" STREQUAL "")
|
|
40 SET(LSB_PATH "/opt/lsb")
|
|
41 ENDIF()
|
|
42
|
|
43 IF (EXISTS ${LSB_PATH}/lib64)
|
|
44 SET(LSB_TARGET_PROCESSOR "x86_64")
|
|
45 SET(LSB_LIBPATH ${LSB_PATH}/lib64-${LSB_TARGET_VERSION})
|
|
46 ELSEIF (EXISTS ${LSB_PATH}/lib)
|
|
47 SET(LSB_TARGET_PROCESSOR "x86")
|
|
48 SET(LSB_LIBPATH ${LSB_PATH}/lib-${LSB_TARGET_VERSION})
|
|
49 ELSE()
|
|
50 MESSAGE(FATAL_ERROR "Unable to detect the target processor architecture. Check the LSB_PATH environment variable.")
|
|
51 ENDIF()
|
|
52
|
|
53 SET(LSB_CPPPATH ${LSB_PATH}/include)
|
|
54 SET(PKG_CONFIG_PATH ${LSB_LIBPATH}/pkgconfig/)
|
|
55
|
|
56 # the name of the target operating system
|
|
57 SET(CMAKE_SYSTEM_NAME Linux)
|
|
58 SET(CMAKE_SYSTEM_VERSION LinuxStandardBase)
|
|
59 SET(CMAKE_SYSTEM_PROCESSOR ${LSB_TARGET_PROCESSOR})
|
|
60
|
|
61 # which compilers to use for C and C++
|
|
62 SET(CMAKE_C_COMPILER ${LSB_PATH}/bin/lsbcc)
|
|
63
|
|
64 if (${CMAKE_VERSION} VERSION_LESS "3.6.0")
|
|
65 CMAKE_FORCE_CXX_COMPILER(${LSB_PATH}/bin/lsbc++ GNU)
|
|
66 else()
|
|
67 SET(CMAKE_CXX_COMPILER ${LSB_PATH}/bin/lsbc++)
|
|
68 endif()
|
|
69
|
|
70 # here is the target environment located
|
|
71 SET(CMAKE_FIND_ROOT_PATH ${LSB_PATH})
|
|
72
|
|
73 # adjust the default behaviour of the FIND_XXX() commands:
|
|
74 # search headers and libraries in the target environment, search
|
|
75 # programs in the host environment
|
|
76 SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
77 SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER)
|
|
78 SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER)
|
|
79
|
|
80 SET(CMAKE_CROSSCOMPILING OFF)
|
|
81
|
|
82
|
|
83 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -I${LSB_PATH}/include" CACHE INTERNAL "" FORCE)
|
|
84 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -nostdinc++ -I${LSB_PATH}/include -I${LSB_PATH}/include/c++ -I${LSB_PATH}/include/c++/backward" CACHE INTERNAL "" FORCE)
|
|
85 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -L${LSB_LIBPATH} --lsb-besteffort" CACHE INTERNAL "" FORCE)
|
|
86 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -L${LSB_LIBPATH} --lsb-besteffort" CACHE INTERNAL "" FORCE)
|
|
87
|
|
88 if (NOT "${LSB_CXX}" STREQUAL "")
|
|
89 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --lsb-cxx=${LSB_CXX}")
|
|
90 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-cxx=${LSB_CXX}")
|
|
91 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --lsb-cxx=${LSB_CXX}")
|
|
92 endif()
|
|
93
|
|
94 if (NOT "${LSB_CC}" STREQUAL "")
|
|
95 SET(CMAKE_C_FLAGS "${CMAKE_CC_FLAGS} --lsb-cc=${LSB_CC}")
|
|
96 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --lsb-cc=${LSB_CC}")
|
|
97 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-cc=${LSB_CC}")
|
|
98 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --lsb-cc=${LSB_CC}")
|
|
99 endif()
|
|
100
|