Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 1942:cc9901a98099
fix for msvc
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 25 Mar 2016 11:28:52 +0100 |
parents | 50234539a0dd |
children | 01de36d949c3 |
rev | line source |
---|---|
134 | 1 # This file sets all the compiler-related flags |
2 | |
1414 | 3 if (CMAKE_CROSSCOMPILING) |
4 # Cross-compilation necessarily implies standalone and static build | |
5 SET(STATIC_BUILD ON) | |
6 SET(STANDALONE_BUILD ON) | |
7 endif() | |
8 | |
9 if (CMAKE_COMPILER_IS_GNUCXX) | |
134 | 10 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wno-long-long -Wno-implicit-function-declaration") |
11 # --std=c99 makes libcurl not to compile | |
12 # -pedantic gives a lot of warnings on OpenSSL | |
13 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Wno-long-long -Wno-variadic-macros") | |
571 | 14 |
15 if (CMAKE_CROSSCOMPILING) | |
16 # http://stackoverflow.com/a/3543845/881731 | |
17 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
18 endif() | |
19 | |
1414 | 20 elseif (MSVC) |
569 | 21 # Use static runtime under Visual Studio |
22 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 23 # http://stackoverflow.com/a/6510446 |
24 foreach(flag_var | |
25 CMAKE_C_FLAGS_DEBUG | |
26 CMAKE_CXX_FLAGS_DEBUG | |
27 CMAKE_C_FLAGS_RELEASE | |
28 CMAKE_CXX_FLAGS_RELEASE | |
29 CMAKE_C_FLAGS_MINSIZEREL | |
30 CMAKE_CXX_FLAGS_MINSIZEREL | |
31 CMAKE_C_FLAGS_RELWITHDEBINFO | |
32 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
33 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
34 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
35 endforeach(flag_var) | |
569 | 36 |
1060 | 37 # Add /Zm256 compiler option to Visual Studio to fix PCH errors |
38 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256") | |
39 | |
134 | 40 add_definitions( |
41 -D_CRT_SECURE_NO_WARNINGS=1 | |
42 -D_CRT_SECURE_NO_DEPRECATE=1 | |
43 ) | |
1057
3a26bc6e4867
more generic paths in CMake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1031
diff
changeset
|
44 include_directories(${ORTHANC_ROOT}/Resources/ThirdParty/VisualStudio) |
134 | 45 link_libraries(netapi32) |
46 endif() | |
47 | |
48 | |
890 | 49 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
1337 | 50 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR |
51 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
52 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
53 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
54 |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
55 if (NOT DEFINED ENABLE_PLUGINS_VERSION_SCRIPT OR |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
56 ENABLE_PLUGINS_VERSION_SCRIPT) |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
57 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
|
58 endif() |
134 | 59 |
60 # Remove the "-rdynamic" option | |
61 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
62 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
1337 | 63 link_libraries(uuid pthread rt) |
64 | |
65 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") | |
66 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
|
67 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
|
68 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") |
1337 | 69 add_definitions( |
70 -D_LARGEFILE64_SOURCE=1 | |
71 -D_FILE_OFFSET_BITS=64 | |
72 ) | |
73 link_libraries(dl) | |
74 endif() | |
134 | 75 |
76 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
|
77 if (MSVC) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
78 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
|
79 # 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
|
80 # to target Windows XP anymore |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
81 if (MSVC_VERSION LESS 1800) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
82 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
83 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
84 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
85 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
86 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
87 else() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
88 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
89 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
90 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
91 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
92 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
93 |
134 | 94 add_definitions( |
95 -D_CRT_SECURE_NO_WARNINGS=1 | |
96 ) | |
97 link_libraries(rpcrt4 ws2_32) | |
495 | 98 |
1414 | 99 if (CMAKE_COMPILER_IS_GNUCXX) |
495 | 100 # This is a patch for MinGW64 |
101 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") | |
1420 | 102 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
|
103 |
1381 | 104 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD) |
105 if (HAVE_WIN_PTHREAD) | |
106 # This line is necessary to compile with recent versions of MinGW, | |
107 # otherwise "libwinpthread-1.dll" is not statically linked. | |
108 SET(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -Wl,-Bstatic -lstdc++ -lpthread -Wl,-Bdynamic") | |
109 add_definitions(-DHAVE_WIN_PTHREAD=1) | |
110 else() | |
111 add_definitions(-DHAVE_WIN_PTHREAD=0) | |
112 endif() | |
495 | 113 endif() |
114 | |
918 | 115 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
|
116 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
|
117 |
918 | 118 add_definitions( |
119 -D_XOPEN_SOURCE=1 | |
120 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
121 link_libraries(iconv) |
918 | 122 |
134 | 123 endif() |
124 | |
125 | |
1337 | 126 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
127 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -I${LSB_PATH}/include") | |
128 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -nostdinc++ -I${LSB_PATH}/include -I${LSB_PATH}/include/c++ -I${LSB_PATH}/include/c++/backward -fpermissive") | |
129 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -L${LSB_LIBPATH}") | |
130 endif() | |
131 | |
132 | |
133 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") | |
134 # In FreeBSD, the "/usr/local/" folder contains the ports and need to be imported | |
135 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") | |
1405 | 136 SET(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") |
1337 | 137 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") |
138 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib") | |
139 endif() | |
140 | |
141 | |
134 | 142 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
143 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H) | |
144 else() | |
1336
a80e811ec619
fix unneeded complexity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1335
diff
changeset
|
145 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H) |
134 | 146 endif() |
147 | |
148 if (NOT HAVE_UUID_H) | |
149 message(FATAL_ERROR "Please install the uuid-dev package") | |
150 endif() | |
151 | |
1337 | 152 |
1414 | 153 if (STATIC_BUILD) |
134 | 154 add_definitions(-DORTHANC_STATIC=1) |
155 else() | |
156 add_definitions(-DORTHANC_STATIC=0) | |
157 endif() |