Mercurial > hg > orthanc
annotate OrthancFramework/Resources/CMake/Compiler.cmake @ 4067:3d7afb01dc14 framework
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 11 Jun 2020 18:57:03 +0200 |
parents | 3a59a021b5de |
children | bf1a17f12306 |
rev | line source |
---|---|
134 | 1 # This file sets all the compiler-related flags |
2 | |
4063
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
3 |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
4 # 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
|
5 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
|
6 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
|
7 |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4054
diff
changeset
|
8 |
4042
f5c86a00cae0
moving DownloadOrthancFramework.cmake to Resources/CMake/
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
9 include(CheckLibraryExists) |
f5c86a00cae0
moving DownloadOrthancFramework.cmake to Resources/CMake/
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
10 |
3833
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3625
diff
changeset
|
11 if ((CMAKE_CROSSCOMPILING AND NOT |
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3625
diff
changeset
|
12 "${CMAKE_SYSTEM_VERSION}" STREQUAL "CrossToolNg") OR |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
13 "${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
1414 | 14 # Cross-compilation necessarily implies standalone and static build |
15 SET(STATIC_BUILD ON) | |
16 SET(STANDALONE_BUILD ON) | |
17 endif() | |
18 | |
3625 | 19 |
20 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") | |
21 # Cache the environment variables "LSB_CC" and "LSB_CXX" for further | |
22 # use by "ExternalProject" in CMake | |
23 SET(CMAKE_LSB_CC $ENV{LSB_CC} CACHE STRING "") | |
24 SET(CMAKE_LSB_CXX $ENV{LSB_CXX} CACHE STRING "") | |
25 endif() | |
26 | |
27 | |
1414 | 28 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
|
29 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
|
30 |
134 | 31 # --std=c99 makes libcurl not to compile |
32 # -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
|
33 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -Wno-variadic-macros") |
571 | 34 |
35 if (CMAKE_CROSSCOMPILING) | |
36 # http://stackoverflow.com/a/3543845/881731 | |
37 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
38 endif() | |
39 | |
1414 | 40 elseif (MSVC) |
569 | 41 # Use static runtime under Visual Studio |
42 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 43 # http://stackoverflow.com/a/6510446 |
44 foreach(flag_var | |
45 CMAKE_C_FLAGS_DEBUG | |
46 CMAKE_CXX_FLAGS_DEBUG | |
47 CMAKE_C_FLAGS_RELEASE | |
48 CMAKE_CXX_FLAGS_RELEASE | |
49 CMAKE_C_FLAGS_MINSIZEREL | |
50 CMAKE_CXX_FLAGS_MINSIZEREL | |
51 CMAKE_C_FLAGS_RELWITHDEBINFO | |
52 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
53 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
54 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
55 endforeach(flag_var) | |
569 | 56 |
3251
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
57 # 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
|
58 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256") |
1060 | 59 |
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
|
60 # 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
|
61 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
|
62 # "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
|
63 # 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
|
64 # 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
|
65 # 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
|
66 # 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
|
67 # 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
|
68 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
|
69 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
|
70 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
|
71 |
134 | 72 add_definitions( |
73 -D_CRT_SECURE_NO_WARNINGS=1 | |
74 -D_CRT_SECURE_NO_DEPRECATE=1 | |
75 ) | |
2148
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
76 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
77 if (MSVC_VERSION LESS 1600) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
78 # 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
|
79 # 1600), Microsoft ships a standard-compliant <stdint.h> |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
80 # 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
|
81 # compatibility header. |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
82 # http://stackoverflow.com/a/70630/881731 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
83 # 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
|
84 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
|
85 endif() |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
86 |
134 | 87 link_libraries(netapi32) |
88 endif() | |
89 | |
90 | |
2364 | 91 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
92 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
93 # In FreeBSD/OpenBSD, the "/usr/local/" folder contains the ports and need to be imported | |
94 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") | |
95 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/usr/local/include") | |
96 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") | |
97 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib") | |
98 endif() | |
99 | |
100 | |
890 | 101 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
1337 | 102 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR |
2364 | 103 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
104 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
105 | |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
106 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" AND |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
107 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") |
2364 | 108 # 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
|
109 # (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
|
110 # OpenBSD, and make the PostgreSQL plugin complain about missing |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
111 # "environ" global variable in FreeBSD |
2364 | 112 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
113 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") | |
114 endif() | |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
115 |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
116 if (NOT DEFINED ENABLE_PLUGINS_VERSION_SCRIPT OR |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
117 ENABLE_PLUGINS_VERSION_SCRIPT) |
4049
47e9e788224c
removing occurrences of ORTHANC_ROOT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
118 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${CMAKE_CURRENT_LIST_DIR}/../VersionScriptPlugins.map") |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
119 endif() |
134 | 120 |
121 # Remove the "-rdynamic" option | |
122 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
123 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
2450
ade8b4ddd8a6
Static linking against libuuid
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
124 link_libraries(pthread) |
2364 | 125 |
126 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
127 link_libraries(rt) | |
128 endif() | |
129 | |
130 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
131 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
132 link_libraries(dl) | |
133 endif() | |
1337 | 134 |
2460 | 135 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND |
136 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
137 # The "--as-needed" linker flag is not available on FreeBSD and OpenBSD | |
1337 | 138 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
|
139 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
|
140 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") |
2364 | 141 endif() |
142 | |
143 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
144 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
145 # FreeBSD/OpenBSD have just one single interface for file | |
146 # handling, which is 64bit clean, so there is no need to define macro | |
147 # for LFS (Large File Support). | |
148 # https://ohse.de/uwe/articles/lfs.html | |
1337 | 149 add_definitions( |
150 -D_LARGEFILE64_SOURCE=1 | |
151 -D_FILE_OFFSET_BITS=64 | |
152 ) | |
153 endif() | |
134 | 154 |
155 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
|
156 if (MSVC) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
157 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
|
158 # 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
|
159 # to target Windows XP anymore |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
160 if (MSVC_VERSION LESS 1800) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
161 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
162 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
163 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
164 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
165 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
166 else() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
167 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
168 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
169 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
170 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
171 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
172 |
134 | 173 add_definitions( |
174 -D_CRT_SECURE_NO_WARNINGS=1 | |
175 ) | |
176 link_libraries(rpcrt4 ws2_32) | |
495 | 177 |
1414 | 178 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
|
179 # 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
|
180 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
|
181 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
|
182 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
|
183 |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
184 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
185 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
186 # This is a patch for MinGW64 |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
187 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
|
188 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
|
189 endif() |
1377
601d34afdab9
patch for recent versions of MinGW
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1337
diff
changeset
|
190 |
1381 | 191 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD) |
192 if (HAVE_WIN_PTHREAD) | |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
193 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
194 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
195 # 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
|
196 # otherwise "libwinpthread-1.dll" is not statically linked. |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
197 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
|
198 endif() |
1381 | 199 add_definitions(-DHAVE_WIN_PTHREAD=1) |
200 else() | |
201 add_definitions(-DHAVE_WIN_PTHREAD=0) | |
202 endif() | |
495 | 203 endif() |
204 | |
918 | 205 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
4054 | 206 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -exported_symbols_list ${CMAKE_CURRENT_LIST_DIR}/../ExportedSymbolsPlugins.list") |
1647
fe458dde986e
hide symbols in plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1560
diff
changeset
|
207 |
918 | 208 add_definitions( |
209 -D_XOPEN_SOURCE=1 | |
210 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
211 link_libraries(iconv) |
918 | 212 |
2406
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
213 elseif (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
214 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
|
215 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
|
216 |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
217 elseif (CMAKE_SYSTEM_NAME STREQUAL "Android") |
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
218 |
2364 | 219 else() |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
220 message("Unknown target platform: ${CMAKE_SYSTEM_NAME}") |
2364 | 221 message(FATAL_ERROR "Support your platform here") |
134 | 222 endif() |
223 | |
224 | |
2175
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
225 if (DEFINED ENABLE_PROFILING AND ENABLE_PROFILING) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
226 if (CMAKE_COMPILER_IS_GNUCXX) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
227 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
228 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
229 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
|
230 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
|
231 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
|
232 else() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
233 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
|
234 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
235 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
236 |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
237 |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
238 if (CMAKE_COMPILER_IS_GNUCXX) |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
239 # "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
|
240 # 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
|
241 # 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
|
242 # duplicate objects. [...] This bug only happens if there are many |
2457 | 243 # objects." The trick consists in replacing the "r" argument |
244 # ("replace") provided to "ar" (as used in CMake < 3.1) by the "q" | |
245 # argument ("quick append"). This is because of the fact that CMake | |
246 # will invoke "ar" several times with several batches of ".o" | |
247 # objects, and using "r" would overwrite symbols defined in | |
248 # 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
|
249 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
|
250 endif() |