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