Mercurial > hg > orthanc
annotate OrthancFramework/Resources/CMake/DcmtkConfigurationStatic-3.6.6.cmake @ 5397:e7f6ec8cbc35
upgraded boost to 1.83.0
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 11 Oct 2023 14:47:39 +0200 |
parents | c5f243ad7103 |
children | aa1c09fa6632 |
rev | line source |
---|---|
4470 | 1 # Orthanc - A Lightweight, RESTful DICOM Store |
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
3 # Department, University Hospital of Liege, Belgium | |
5185
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
4 # Copyright (C) 2017-2023 Osimis S.A., Belgium |
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
5 # Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4470 | 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 SET(DCMTK_VERSION_NUMBER 366) | |
23 SET(DCMTK_PACKAGE_VERSION "3.6.6") | |
24 SET(DCMTK_SOURCES_DIR ${CMAKE_BINARY_DIR}/dcmtk-3.6.6) | |
5271
c5f243ad7103
switch third party downloads to UCLouvain which provides faster network
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
25 SET(DCMTK_URL "https://orthanc.uclouvain.be/third-party-downloads/dcmtk-3.6.6.tar.gz") |
4470 | 26 SET(DCMTK_MD5 "f815879d315b916366a9da71339c7575") |
27 | |
28 macro(DCMTK_UNSET) | |
29 endmacro() | |
30 | |
31 macro(DCMTK_UNSET_CACHE) | |
32 endmacro() | |
33 | |
34 set(DCMTK_BINARY_DIR ${DCMTK_SOURCES_DIR}/) | |
35 set(DCMTK_CMAKE_INCLUDE ${DCMTK_SOURCES_DIR}/) | |
36 | |
37 if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") | |
38 set(DCMTK_WITH_THREADS OFF) # Disable thread support in wasm/asm.js | |
39 else() | |
40 set(DCMTK_WITH_THREADS ON) | |
41 endif() | |
42 | |
43 add_definitions(-DDCMTK_INSIDE_LOG4CPLUS=1) | |
44 | |
45 if (IS_DIRECTORY "${DCMTK_SOURCES_DIR}") | |
46 set(FirstRun OFF) | |
47 else() | |
48 set(FirstRun ON) | |
49 endif() | |
50 | |
51 DownloadPackage(${DCMTK_MD5} ${DCMTK_URL} "${DCMTK_SOURCES_DIR}") | |
52 | |
53 | |
54 if (FirstRun) | |
55 # Apply the patches | |
56 execute_process( | |
57 COMMAND ${PATCH_EXECUTABLE} -p0 -N -i | |
58 ${CMAKE_CURRENT_LIST_DIR}/../Patches/dcmtk-3.6.6.patch | |
59 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
60 RESULT_VARIABLE Failure | |
61 ) | |
62 | |
63 if (Failure) | |
64 message(FATAL_ERROR "Error while patching a file") | |
65 endif() | |
66 | |
67 configure_file( | |
68 ${CMAKE_CURRENT_LIST_DIR}/../Patches/dcmtk-dcdict_orthanc.cc | |
69 ${DCMTK_SOURCES_DIR}/dcmdata/libsrc/dcdict_orthanc.cc | |
70 COPYONLY) | |
71 else() | |
72 message("The patches for DCMTK have already been applied") | |
73 endif() | |
74 | |
75 | |
76 include_directories( | |
77 ${DCMTK_SOURCES_DIR}/dcmiod/include | |
78 ) | |
79 | |
80 | |
81 # C_CHAR_UNSIGNED *must* be set before calling "GenerateDCMTKConfigure.cmake" | |
82 IF (CMAKE_CROSSCOMPILING) | |
83 if (CMAKE_COMPILER_IS_GNUCXX AND | |
84 CMAKE_SYSTEM_NAME STREQUAL "Windows") # MinGW | |
85 SET(C_CHAR_UNSIGNED 1 CACHE INTERNAL "Whether char is unsigned.") | |
86 | |
87 elseif(CMAKE_SYSTEM_NAME STREQUAL "Emscripten") # WebAssembly or asm.js | |
88 | |
89 # Check out "../WebAssembly/ArithmeticTests/" to regenerate the | |
90 # "arith.h" file | |
91 configure_file( | |
92 ${CMAKE_CURRENT_LIST_DIR}/WebAssembly/arith.h | |
93 ${DCMTK_SOURCES_DIR}/config/include/dcmtk/config/arith.h | |
94 COPYONLY) | |
95 | |
96 UNSET(C_CHAR_UNSIGNED CACHE) | |
97 SET(C_CHAR_UNSIGNED 0 CACHE INTERNAL "") | |
98 | |
99 else() | |
100 message(FATAL_ERROR "Support your platform here") | |
101 endif() | |
102 ENDIF() | |
103 | |
104 | |
105 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") | |
106 SET(DCMTK_ENABLE_CHARSET_CONVERSION "iconv" CACHE STRING "") | |
107 SET(HAVE_SYS_GETTID 0 CACHE INTERNAL "") | |
108 endif() | |
109 | |
110 | |
111 SET(DCMTK_SOURCE_DIR ${DCMTK_SOURCES_DIR}) | |
112 include(${DCMTK_SOURCES_DIR}/CMake/CheckFunctionWithHeaderExists.cmake) | |
113 include(${DCMTK_SOURCES_DIR}/CMake/GenerateDCMTKConfigure.cmake) | |
114 | |
115 | |
116 if (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") # WebAssembly or | |
117 # asm.js The macros below are not properly discovered by DCMTK | |
118 # when using WebAssembly. Check out "../WebAssembly/arith.h" for | |
119 # how we produced these values. This step MUST be after | |
120 # "GenerateDCMTKConfigure" and before the generation of | |
121 # "osconfig.h". | |
122 UNSET(SIZEOF_VOID_P CACHE) | |
123 UNSET(SIZEOF_CHAR CACHE) | |
124 UNSET(SIZEOF_DOUBLE CACHE) | |
125 UNSET(SIZEOF_FLOAT CACHE) | |
126 UNSET(SIZEOF_INT CACHE) | |
127 UNSET(SIZEOF_LONG CACHE) | |
128 UNSET(SIZEOF_SHORT CACHE) | |
129 UNSET(SIZEOF_VOID_P CACHE) | |
130 | |
131 SET(SIZEOF_VOID_P 4 CACHE INTERNAL "") | |
132 SET(SIZEOF_CHAR 1 CACHE INTERNAL "") | |
133 SET(SIZEOF_DOUBLE 8 CACHE INTERNAL "") | |
134 SET(SIZEOF_FLOAT 4 CACHE INTERNAL "") | |
135 SET(SIZEOF_INT 4 CACHE INTERNAL "") | |
136 SET(SIZEOF_LONG 4 CACHE INTERNAL "") | |
137 SET(SIZEOF_SHORT 2 CACHE INTERNAL "") | |
138 SET(SIZEOF_VOID_P 4 CACHE INTERNAL "") | |
139 endif() | |
140 | |
141 | |
142 set(DCMTK_PACKAGE_VERSION_SUFFIX "") | |
143 set(DCMTK_PACKAGE_VERSION_NUMBER ${DCMTK_VERSION_NUMBER}) | |
144 | |
145 CONFIGURE_FILE( | |
146 ${DCMTK_SOURCES_DIR}/CMake/osconfig.h.in | |
147 ${DCMTK_SOURCES_DIR}/config/include/dcmtk/config/osconfig.h) | |
148 | |
149 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
150 link_libraries(netapi32) # For NetWkstaUserGetInfo@12 | |
151 link_libraries(iphlpapi) # For GetAdaptersInfo@8 | |
152 | |
153 # Configure Wine if cross-compiling for Windows | |
154 if (CMAKE_COMPILER_IS_GNUCXX) | |
155 include(${DCMTK_SOURCES_DIR}/CMake/dcmtkUseWine.cmake) | |
156 FIND_PROGRAM(WINE_WINE_PROGRAM wine) | |
157 FIND_PROGRAM(WINE_WINEPATH_PROGRAM winepath) | |
158 list(APPEND DCMTK_TRY_COMPILE_REQUIRED_CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS=-static") | |
159 endif() | |
160 endif() | |
161 | |
162 # This step must be after the generation of "osconfig.h" | |
163 if (NOT CMAKE_SYSTEM_NAME STREQUAL "Emscripten") | |
164 INSPECT_FUNDAMENTAL_ARITHMETIC_TYPES() | |
165 endif() | |
166 | |
167 | |
168 # Source for the logging facility of DCMTK | |
169 AUX_SOURCE_DIRECTORY(${DCMTK_SOURCES_DIR}/oflog/libsrc DCMTK_SOURCES) | |
170 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR | |
171 ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" OR | |
172 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR | |
173 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR | |
174 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" OR | |
175 ${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten") | |
176 list(REMOVE_ITEM DCMTK_SOURCES | |
177 ${DCMTK_SOURCES_DIR}/oflog/libsrc/clfsap.cc | |
178 ${DCMTK_SOURCES_DIR}/oflog/libsrc/windebap.cc | |
179 ${DCMTK_SOURCES_DIR}/oflog/libsrc/winsock.cc | |
180 ) | |
181 | |
182 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
183 list(REMOVE_ITEM DCMTK_SOURCES | |
184 ${DCMTK_SOURCES_DIR}/oflog/libsrc/unixsock.cc | |
185 ${DCMTK_SOURCES_DIR}/oflog/libsrc/clfsap.cc | |
186 ) | |
187 endif() | |
188 | |
189 | |
190 # Starting with DCMTK 3.6.2, the Nagle algorithm is not disabled by | |
191 # default since this does not seem to be appropriate (anymore) for | |
192 # most modern operating systems. In order to change this default, the | |
193 # environment variable NO_TCPDELAY can be set to "1" (see envvars.txt | |
194 # for details). Alternatively, the macro DISABLE_NAGLE_ALGORITHM can | |
195 # be defined to change this setting at compilation time (see | |
196 # macros.txt for details). | |
197 # https://forum.dcmtk.org/viewtopic.php?t=4632 | |
198 add_definitions( | |
199 -DDISABLE_NAGLE_ALGORITHM=1 | |
200 ) | |
201 | |
202 | |
203 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
204 # For compatibility with Windows XP, avoid using fiber-local-storage | |
205 # in log4cplus, but use thread-local-storage instead. Otherwise, | |
206 # Windows XP complains about missing "FlsGetValue()" in KERNEL32.dll | |
207 add_definitions( | |
208 -DDCMTK_LOG4CPLUS_AVOID_WIN32_FLS | |
209 ) | |
210 | |
211 if (CMAKE_COMPILER_IS_GNUCXX OR # MinGW | |
212 "${CMAKE_SIZEOF_VOID_P}" STREQUAL "4") # MSVC for 32bit (*) | |
213 | |
214 # (*) With multithreaded logging enabled, Visual Studio 2008 fails | |
215 # with error: ".\dcmtk-3.6.6\oflog\libsrc\globinit.cc(422) : error | |
216 # C2664: 'dcmtk::log4cplus::thread::impl::tls_init' : cannot | |
217 # convert parameter 1 from 'void (__stdcall *)(void *)' to | |
218 # 'dcmtk::log4cplus::thread::impl::tls_init_cleanup_func_type'" | |
219 # None of the functions with this name in scope match the target type | |
220 | |
221 add_definitions( | |
222 -DDCMTK_LOG4CPLUS_SINGLE_THREADED | |
223 ) | |
224 endif() | |
225 endif() |