Mercurial > hg > orthanc
annotate OrthancFramework/Resources/CMake/Compiler.cmake @ 5853:4d932683049d get-scu tip
very first implementation of C-Get SCU
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Tue, 29 Oct 2024 17:25:49 +0100 |
parents | ede854dfef3a |
children |
rev | line source |
---|---|
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
1 # Orthanc - A Lightweight, RESTful DICOM Store |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
3 # Department, University Hospital of Liege, Belgium |
5640
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
4 # Copyright (C) 2017-2023 Osimis S.A., Belgium |
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
5 # Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5483
diff
changeset
|
6 # Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
7 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
8 # This program is free software: you can redistribute it and/or |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
9 # modify it under the terms of the GNU Lesser General Public License |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
10 # as published by the Free Software Foundation, either version 3 of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
11 # the License, or (at your option) any later version. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
12 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
13 # This program is distributed in the hope that it will be useful, but |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
14 # WITHOUT ANY WARRANTY; without even the implied warranty of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
16 # Lesser General Public License for more details. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
17 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
18 # You should have received a copy of the GNU Lesser General Public |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
19 # License along with this program. If not, see |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
20 # <http://www.gnu.org/licenses/>. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
21 |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4099
diff
changeset
|
22 |
134 | 23 # This file sets all the compiler-related flags |
24 | |
4063
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
25 |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
26 # Save the current compiler flags to the cache every time cmake configures the project |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
27 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "compiler flags" FORCE) |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
28 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" CACHE STRING "compiler flags" FORCE) |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
29 |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
30 |
4042
f5c86a00cae0
moving DownloadOrthancFramework.cmake to Resources/CMake/
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
31 include(CheckLibraryExists) |
f5c86a00cae0
moving DownloadOrthancFramework.cmake to Resources/CMake/
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
32 |
3833
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3625
diff
changeset
|
33 if ((CMAKE_CROSSCOMPILING AND NOT |
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3625
diff
changeset
|
34 "${CMAKE_SYSTEM_VERSION}" STREQUAL "CrossToolNg") OR |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
35 "${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
1414 | 36 # Cross-compilation necessarily implies standalone and static build |
37 SET(STATIC_BUILD ON) | |
38 SET(STANDALONE_BUILD ON) | |
39 endif() | |
40 | |
3625 | 41 |
42 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") | |
43 # Cache the environment variables "LSB_CC" and "LSB_CXX" for further | |
44 # use by "ExternalProject" in CMake | |
45 SET(CMAKE_LSB_CC $ENV{LSB_CC} CACHE STRING "") | |
46 SET(CMAKE_LSB_CXX $ENV{LSB_CXX} CACHE STRING "") | |
5483
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
47 |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
48 # This is necessary to build "Orthanc mainline - Framework LSB |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
49 # Release" on "buildbot-worker-debian11" |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
50 set(LSB_PTHREAD_NONSHARED "${LSB_PATH}/lib64-${LSB_TARGET_VERSION}/libpthread_nonshared.a") |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
51 if (EXISTS ${LSB_PTHREAD_NONSHARED}) |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
52 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${LSB_PTHREAD_NONSHARED}") |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
53 endif() |
3625 | 54 endif() |
55 | |
56 | |
1414 | 57 if (CMAKE_COMPILER_IS_GNUCXX) |
2362
f47fd47b3c91
removal of -Wno-implicit-function-declaration compiler flag
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2175
diff
changeset
|
58 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wno-long-long") |
f47fd47b3c91
removal of -Wno-implicit-function-declaration compiler flag
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2175
diff
changeset
|
59 |
134 | 60 # --std=c99 makes libcurl not to compile |
61 # -pedantic gives a lot of warnings on OpenSSL | |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
62 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -Wno-variadic-macros") |
571 | 63 |
64 if (CMAKE_CROSSCOMPILING) | |
65 # http://stackoverflow.com/a/3543845/881731 | |
66 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
67 endif() | |
68 | |
1414 | 69 elseif (MSVC) |
569 | 70 # Use static runtime under Visual Studio |
71 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 72 # http://stackoverflow.com/a/6510446 |
73 foreach(flag_var | |
74 CMAKE_C_FLAGS_DEBUG | |
75 CMAKE_CXX_FLAGS_DEBUG | |
76 CMAKE_C_FLAGS_RELEASE | |
77 CMAKE_CXX_FLAGS_RELEASE | |
78 CMAKE_C_FLAGS_MINSIZEREL | |
79 CMAKE_CXX_FLAGS_MINSIZEREL | |
80 CMAKE_C_FLAGS_RELWITHDEBINFO | |
81 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
82 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
83 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
84 endforeach(flag_var) | |
569 | 85 |
3251
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
86 # Add /Zm256 compiler option to Visual Studio to fix PCH errors |
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
87 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256") |
1060 | 88 |
3278
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
89 # New in Orthanc 1.5.5 |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
90 if (MSVC_MULTIPLE_PROCESSES) |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
91 # "If you omit the processMax argument in the /MP option, the |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
92 # compiler obtains the number of effective processors from the |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
93 # operating system, and then creates one process per effective |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
94 # processor" |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
95 # https://blog.kitware.com/cmake-building-with-all-your-cores/ |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
96 # https://docs.microsoft.com/en-us/cpp/build/reference/mp-build-with-multiple-processes |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
97 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP") |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
98 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
99 endif() |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
100 |
134 | 101 add_definitions( |
102 -D_CRT_SECURE_NO_WARNINGS=1 | |
103 -D_CRT_SECURE_NO_DEPRECATE=1 | |
104 ) | |
2148
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
105 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
106 if (MSVC_VERSION LESS 1600) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
107 # Starting with Visual Studio >= 2010 (i.e. macro _MSC_VER >= |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
108 # 1600), Microsoft ships a standard-compliant <stdint.h> |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
109 # header. For earlier versions of Visual Studio, give access to a |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
110 # compatibility header. |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
111 # http://stackoverflow.com/a/70630/881731 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
112 # https://en.wikibooks.org/wiki/C_Programming/C_Reference/stdint.h#External_links |
4049
47e9e788224c
removing occurrences of ORTHANC_ROOT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
113 include_directories(${CMAKE_CURRENT_LIST_DIR}/../../Resources/ThirdParty/VisualStudio) |
2148
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
114 endif() |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
115 |
134 | 116 link_libraries(netapi32) |
117 endif() | |
118 | |
119 | |
2364 | 120 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
121 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
122 # In FreeBSD/OpenBSD, the "/usr/local/" folder contains the ports and need to be imported | |
123 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") | |
124 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/usr/local/include") | |
125 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") | |
126 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib") | |
127 endif() | |
128 | |
129 | |
890 | 130 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
1337 | 131 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR |
2364 | 132 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
133 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
134 | |
5479
dc8e5c65be99
revert previous ineffective changeset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5478
diff
changeset
|
135 if (# NOT ${CMAKE_SYSTEM_VERSION} STREQUAL "LinuxStandardBase" AND |
5478
2948c694352e
LSB on Debian 12: removed "--lsb-besteffort" and "-Wl,--no-undefined"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5359
diff
changeset
|
136 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" AND |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
137 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") |
2364 | 138 # The "--no-undefined" linker flag makes the shared libraries |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
139 # (plugins ModalityWorklists and ServeFolders) fail to compile on |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
140 # OpenBSD, and make the PostgreSQL plugin complain about missing |
5483
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
141 # "environ" global variable in FreeBSD. |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
142 # |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
143 # TODO - Furthermore, on Linux Standard Base running on Debian 12, |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
144 # the "-Wl,--no-undefined" seems to break the compilation (added |
e7a04f878704
fix build of Orthanc Framework shared library on LSB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5479
diff
changeset
|
145 # after Orthanc 1.12.2). This is disabled for now. |
2364 | 146 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
147 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") | |
148 endif() | |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
149 |
134 | 150 # Remove the "-rdynamic" option |
151 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
152 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
2450
ade8b4ddd8a6
Static linking against libuuid
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
153 link_libraries(pthread) |
2364 | 154 |
155 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
156 link_libraries(rt) | |
157 endif() | |
158 | |
159 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
160 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
161 link_libraries(dl) | |
162 endif() | |
1337 | 163 |
2460 | 164 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND |
165 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
166 # The "--as-needed" linker flag is not available on FreeBSD and OpenBSD | |
1337 | 167 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed") |
1416
037d5ffca74d
as needed for plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
168 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--as-needed") |
037d5ffca74d
as needed for plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
169 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") |
2364 | 170 endif() |
171 | |
172 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
173 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
174 # FreeBSD/OpenBSD have just one single interface for file | |
175 # handling, which is 64bit clean, so there is no need to define macro | |
176 # for LFS (Large File Support). | |
177 # https://ohse.de/uwe/articles/lfs.html | |
1337 | 178 add_definitions( |
179 -D_LARGEFILE64_SOURCE=1 | |
180 -D_FILE_OFFSET_BITS=64 | |
181 ) | |
182 endif() | |
134 | 183 |
184 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
1560
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
185 if (MSVC) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
186 message("MSVC compiler version = " ${MSVC_VERSION} "\n") |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
187 # Starting Visual Studio 2013 (version 1800), it is not possible |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
188 # to target Windows XP anymore |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
189 if (MSVC_VERSION LESS 1800) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
190 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
191 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
192 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
193 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
194 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
195 else() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
196 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
197 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
198 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
199 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
200 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
201 |
134 | 202 add_definitions( |
203 -D_CRT_SECURE_NO_WARNINGS=1 | |
204 ) | |
4539
49971e7b75fb
link against iphlpapi.dll on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
205 link_libraries(rpcrt4 ws2_32 iphlpapi) # "iphlpapi" is for "SystemToolbox::GetMacAddresses()" |
495 | 206 |
1414 | 207 if (CMAKE_COMPILER_IS_GNUCXX) |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
208 # Some additional C/C++ compiler flags for MinGW |
1969
5e40f88f4eba
fix for old versions of mingw
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1968
diff
changeset
|
209 SET(MINGW_NO_WARNINGS "-Wno-unused-function -Wno-unused-variable") |
5e40f88f4eba
fix for old versions of mingw
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1968
diff
changeset
|
210 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${MINGW_NO_WARNINGS} -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast") |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
211 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MINGW_NO_WARNINGS}") |
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
212 |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
213 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
214 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
215 # This is a patch for MinGW64 |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
216 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
217 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
218 endif() |
1377
601d34afdab9
patch for recent versions of MinGW
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1337
diff
changeset
|
219 |
1381 | 220 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD) |
221 if (HAVE_WIN_PTHREAD) | |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
222 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
223 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
224 # This line is necessary to compile with recent versions of MinGW, |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
225 # otherwise "libwinpthread-1.dll" is not statically linked. |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
226 SET(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -Wl,-Bstatic -lstdc++ -lpthread -Wl,-Bdynamic") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
227 endif() |
1381 | 228 add_definitions(-DHAVE_WIN_PTHREAD=1) |
229 else() | |
230 add_definitions(-DHAVE_WIN_PTHREAD=0) | |
231 endif() | |
495 | 232 endif() |
233 | |
918 | 234 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
5731
ede854dfef3a
try to fix build on recent compilers on MacOS
Alain Mazy <am@orthanc.team>
parents:
5640
diff
changeset
|
235 |
ede854dfef3a
try to fix build on recent compilers on MacOS
Alain Mazy <am@orthanc.team>
parents:
5640
diff
changeset
|
236 # fix this error that appears with recent compilers on MacOS: boost/mpl/aux_/integral_wrapper.hpp:73:31: error: integer value -1 is outside the valid range of values [0, 3] for this enumeration type [-Wenum-constexpr-conversion] |
ede854dfef3a
try to fix build on recent compilers on MacOS
Alain Mazy <am@orthanc.team>
parents:
5640
diff
changeset
|
237 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-enum-constexpr-conversion") |
ede854dfef3a
try to fix build on recent compilers on MacOS
Alain Mazy <am@orthanc.team>
parents:
5640
diff
changeset
|
238 |
918 | 239 add_definitions( |
240 -D_XOPEN_SOURCE=1 | |
241 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
242 link_libraries(iconv) |
918 | 243 |
2406
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
244 elseif (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
245 message("Building using Emscripten (for WebAssembly or asm.js targets)") |
4066
3a59a021b5de
build instructions for the library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
246 include(${CMAKE_CURRENT_LIST_DIR}/EmscriptenParameters.cmake) |
3599
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
247 |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
248 elseif (CMAKE_SYSTEM_NAME STREQUAL "Android") |
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
249 |
2364 | 250 else() |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
251 message("Unknown target platform: ${CMAKE_SYSTEM_NAME}") |
2364 | 252 message(FATAL_ERROR "Support your platform here") |
134 | 253 endif() |
254 | |
255 | |
2175
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
256 if (DEFINED ENABLE_PROFILING AND ENABLE_PROFILING) |
5170
3e6dbf4a018d
support profiling for clang
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
257 if (CMAKE_COMPILER_IS_GNUCXX OR |
3e6dbf4a018d
support profiling for clang
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
258 CMAKE_CXX_COMPILER_ID STREQUAL "Clang") |
2175
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
259 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
260 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
261 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
262 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
263 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
264 else() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
265 message(FATAL_ERROR "Don't know how to enable profiling on your configuration") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
266 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
267 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
268 |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
269 |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
270 if (CMAKE_COMPILER_IS_GNUCXX) |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
271 # "When creating a static library using binutils (ar) and there |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
272 # exist a duplicate object name (e.g. a/Foo.cpp.o, b/Foo.cpp.o), the |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
273 # resulting static library can end up having only one of the |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
274 # duplicate objects. [...] This bug only happens if there are many |
2457 | 275 # objects." The trick consists in replacing the "r" argument |
276 # ("replace") provided to "ar" (as used in CMake < 3.1) by the "q" | |
277 # argument ("quick append"). This is because of the fact that CMake | |
278 # will invoke "ar" several times with several batches of ".o" | |
279 # objects, and using "r" would overwrite symbols defined in | |
280 # preceding batches. https://cmake.org/Bug/view.php?id=14874 | |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
281 set(CMAKE_CXX_ARCHIVE_APPEND "<CMAKE_AR> <LINK_FLAGS> q <TARGET> <OBJECTS>") |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
282 endif() |
5357
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
283 |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
284 |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
285 # This function defines macro "__ORTHANC_FILE__" as a replacement to |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
286 # macro "__FILE__", as the latter leaks the full path of the source |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
287 # files in the binaries |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
288 # https://stackoverflow.com/questions/8487986/file-macro-shows-full-path |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
289 # https://twitter.com/wget42/status/1676877802375634944?s=20 |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
290 function(DefineSourceBasenameForTarget targetname) |
5359
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
291 # Microsoft Visual Studio is extremely slow if using |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
292 # "set_property()", we only enable this feature for gcc and clang |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
293 if (CMAKE_COMPILER_IS_GNUCXX OR |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
294 CMAKE_CXX_COMPILER_ID STREQUAL "Clang") |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
295 get_target_property(source_files "${targetname}" SOURCES) |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
296 foreach(sourcefile ${source_files}) |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
297 get_filename_component(basename "${sourcefile}" NAME) |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
298 set_property( |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
299 SOURCE "${sourcefile}" APPEND |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
300 PROPERTY COMPILE_DEFINITIONS "__ORTHANC_FILE__=\"${basename}\"") |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
301 endforeach() |
035ebc5b227c
disable DefineSourceBasenameForTarget for MSVC
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5357
diff
changeset
|
302 endif() |
5357
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
303 endfunction() |