Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 3524:d96379a965de
merge
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 24 Sep 2019 18:06:56 +0200 |
parents | cfaa9eded17e |
children | 589238dcd782 |
rev | line source |
---|---|
134 | 1 # This file sets all the compiler-related flags |
2 | |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
3 if (CMAKE_CROSSCOMPILING OR |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
4 "${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
1414 | 5 # Cross-compilation necessarily implies standalone and static build |
6 SET(STATIC_BUILD ON) | |
7 SET(STANDALONE_BUILD ON) | |
8 endif() | |
9 | |
10 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
|
11 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
|
12 |
134 | 13 # --std=c99 makes libcurl not to compile |
14 # -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
|
15 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -Wno-variadic-macros") |
571 | 16 |
17 if (CMAKE_CROSSCOMPILING) | |
18 # http://stackoverflow.com/a/3543845/881731 | |
19 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
20 endif() | |
21 | |
1414 | 22 elseif (MSVC) |
569 | 23 # Use static runtime under Visual Studio |
24 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 25 # http://stackoverflow.com/a/6510446 |
26 foreach(flag_var | |
27 CMAKE_C_FLAGS_DEBUG | |
28 CMAKE_CXX_FLAGS_DEBUG | |
29 CMAKE_C_FLAGS_RELEASE | |
30 CMAKE_CXX_FLAGS_RELEASE | |
31 CMAKE_C_FLAGS_MINSIZEREL | |
32 CMAKE_CXX_FLAGS_MINSIZEREL | |
33 CMAKE_C_FLAGS_RELWITHDEBINFO | |
34 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
35 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
36 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
37 endforeach(flag_var) | |
569 | 38 |
3251
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
39 # 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
|
40 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256") |
1060 | 41 |
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
|
42 # 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
|
43 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
|
44 # "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
|
45 # 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
|
46 # 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
|
47 # 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
|
48 # 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
|
49 # 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
|
50 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
|
51 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
|
52 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
|
53 |
134 | 54 add_definitions( |
55 -D_CRT_SECURE_NO_WARNINGS=1 | |
56 -D_CRT_SECURE_NO_DEPRECATE=1 | |
57 ) | |
2148
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
58 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
59 if (MSVC_VERSION LESS 1600) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
60 # 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
|
61 # 1600), Microsoft ships a standard-compliant <stdint.h> |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
62 # 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
|
63 # compatibility header. |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
64 # http://stackoverflow.com/a/70630/881731 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
65 # https://en.wikibooks.org/wiki/C_Programming/C_Reference/stdint.h#External_links |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
66 include_directories(${ORTHANC_ROOT}/Resources/ThirdParty/VisualStudio) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
67 endif() |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
68 |
134 | 69 link_libraries(netapi32) |
70 endif() | |
71 | |
72 | |
2364 | 73 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
74 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
75 # In FreeBSD/OpenBSD, the "/usr/local/" folder contains the ports and need to be imported | |
76 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") | |
77 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/usr/local/include") | |
78 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") | |
79 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib") | |
80 endif() | |
81 | |
82 | |
890 | 83 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
1337 | 84 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR |
2364 | 85 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
86 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
87 | |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
88 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
|
89 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") |
2364 | 90 # 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
|
91 # (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
|
92 # 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
|
93 # "environ" global variable in FreeBSD |
2364 | 94 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
95 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") | |
96 endif() | |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
97 |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
98 if (NOT DEFINED ENABLE_PLUGINS_VERSION_SCRIPT OR |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
99 ENABLE_PLUGINS_VERSION_SCRIPT) |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
100 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${ORTHANC_ROOT}/Plugins/Samples/Common/VersionScript.map") |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
101 endif() |
134 | 102 |
103 # Remove the "-rdynamic" option | |
104 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
105 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
2450
ade8b4ddd8a6
Static linking against libuuid
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
106 link_libraries(pthread) |
2364 | 107 |
108 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
109 link_libraries(rt) | |
110 endif() | |
111 | |
112 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
113 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
114 link_libraries(dl) | |
115 endif() | |
1337 | 116 |
2460 | 117 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND |
118 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
119 # The "--as-needed" linker flag is not available on FreeBSD and OpenBSD | |
1337 | 120 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
|
121 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
|
122 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") |
2364 | 123 endif() |
124 | |
125 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
126 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
127 # FreeBSD/OpenBSD have just one single interface for file | |
128 # handling, which is 64bit clean, so there is no need to define macro | |
129 # for LFS (Large File Support). | |
130 # https://ohse.de/uwe/articles/lfs.html | |
1337 | 131 add_definitions( |
132 -D_LARGEFILE64_SOURCE=1 | |
133 -D_FILE_OFFSET_BITS=64 | |
134 ) | |
135 endif() | |
134 | 136 |
137 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
|
138 if (MSVC) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
139 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
|
140 # 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
|
141 # to target Windows XP anymore |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
142 if (MSVC_VERSION LESS 1800) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
143 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
144 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
145 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
146 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
147 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
148 else() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
149 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
150 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
151 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
152 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
153 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
154 |
134 | 155 add_definitions( |
156 -D_CRT_SECURE_NO_WARNINGS=1 | |
157 ) | |
158 link_libraries(rpcrt4 ws2_32) | |
495 | 159 |
1414 | 160 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
|
161 # 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
|
162 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
|
163 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
|
164 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
|
165 |
495 | 166 # This is a patch for MinGW64 |
3459
cbbe0bb80bd4
explicit error message if missing /etc/localtime
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3278
diff
changeset
|
167 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
1420 | 168 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
1377
601d34afdab9
patch for recent versions of MinGW
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1337
diff
changeset
|
169 |
1381 | 170 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD) |
171 if (HAVE_WIN_PTHREAD) | |
172 # This line is necessary to compile with recent versions of MinGW, | |
173 # otherwise "libwinpthread-1.dll" is not statically linked. | |
174 SET(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -Wl,-Bstatic -lstdc++ -lpthread -Wl,-Bdynamic") | |
175 add_definitions(-DHAVE_WIN_PTHREAD=1) | |
176 else() | |
177 add_definitions(-DHAVE_WIN_PTHREAD=0) | |
178 endif() | |
495 | 179 endif() |
180 | |
918 | 181 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
1649
8040d56cb0b3
New function "OrthancPluginRegisterErrorCode()" to declare custom error codes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1647
diff
changeset
|
182 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -exported_symbols_list ${ORTHANC_ROOT}/Plugins/Samples/Common/ExportedSymbols.list") |
1647
fe458dde986e
hide symbols in plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1560
diff
changeset
|
183 |
918 | 184 add_definitions( |
185 -D_XOPEN_SOURCE=1 | |
186 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
187 link_libraries(iconv) |
918 | 188 |
2406
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
189 elseif (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
190 message("Building using Emscripten (for WebAssembly or asm.js targets)") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
191 |
2510
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
192 # The BINARYEN_TRAP_MODE specifies what to do when divisions per |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
193 # zero (and similar conditions like integer overflows) are |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
194 # encountered: The "clamp" mode avoids throwing errors, as they |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
195 # cannot be properly catched by "try {} catch (...)" constructions. |
3492
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
196 if (EMSCRIPTEN_SET_LLVM_WASM_BACKEND) |
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
197 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\"]'") |
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
198 else() |
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
199 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\"]' -s BINARYEN_TRAP_MODE='\"clamp\"'") |
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
200 endif() |
2510
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
201 |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
202 elseif (CMAKE_SYSTEM_NAME STREQUAL "Android") |
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
203 |
2364 | 204 else() |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
205 message("Unknown target platform: ${CMAKE_SYSTEM_NAME}") |
2364 | 206 message(FATAL_ERROR "Support your platform here") |
134 | 207 endif() |
208 | |
209 | |
2175
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
210 if (DEFINED ENABLE_PROFILING AND ENABLE_PROFILING) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
211 if (CMAKE_COMPILER_IS_GNUCXX) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
212 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
213 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
214 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
|
215 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
|
216 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
|
217 else() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
218 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
|
219 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
220 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
221 |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
222 |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
223 if (CMAKE_COMPILER_IS_GNUCXX) |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
224 # "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
|
225 # 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
|
226 # 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
|
227 # duplicate objects. [...] This bug only happens if there are many |
2457 | 228 # objects." The trick consists in replacing the "r" argument |
229 # ("replace") provided to "ar" (as used in CMake < 3.1) by the "q" | |
230 # argument ("quick append"). This is because of the fact that CMake | |
231 # will invoke "ar" several times with several batches of ".o" | |
232 # objects, and using "r" would overwrite symbols defined in | |
233 # 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
|
234 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
|
235 endif() |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
236 |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
237 |
1414 | 238 if (STATIC_BUILD) |
134 | 239 add_definitions(-DORTHANC_STATIC=1) |
240 else() | |
241 add_definitions(-DORTHANC_STATIC=0) | |
242 endif() |