Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 966:886652370ff2
accelerating REST API matching
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 27 Jun 2014 15:33:22 +0200 |
parents | 8811abd6aec9 |
children | 703a552b52bc |
rev | line source |
---|---|
134 | 1 # This file sets all the compiler-related flags |
2 | |
3 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
4 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wno-long-long -Wno-implicit-function-declaration") | |
5 # --std=c99 makes libcurl not to compile | |
6 # -pedantic gives a lot of warnings on OpenSSL | |
7 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Wno-long-long -Wno-variadic-macros") | |
571 | 8 |
9 if (CMAKE_CROSSCOMPILING) | |
10 # http://stackoverflow.com/a/3543845/881731 | |
11 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
12 endif() | |
13 | |
134 | 14 elseif (${MSVC}) |
569 | 15 # Use static runtime under Visual Studio |
16 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 17 # http://stackoverflow.com/a/6510446 |
18 foreach(flag_var | |
19 CMAKE_C_FLAGS_DEBUG | |
20 CMAKE_CXX_FLAGS_DEBUG | |
21 CMAKE_C_FLAGS_RELEASE | |
22 CMAKE_CXX_FLAGS_RELEASE | |
23 CMAKE_C_FLAGS_MINSIZEREL | |
24 CMAKE_CXX_FLAGS_MINSIZEREL | |
25 CMAKE_C_FLAGS_RELWITHDEBINFO | |
26 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
27 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
28 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
29 endforeach(flag_var) | |
569 | 30 |
134 | 31 add_definitions( |
32 -D_CRT_SECURE_NO_WARNINGS=1 | |
33 -D_CRT_SECURE_NO_DEPRECATE=1 | |
34 ) | |
950
8811abd6aec9
move ThirdParty code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
930
diff
changeset
|
35 include_directories(${CMAKE_SOURCE_DIR}/Resources/ThirdParty/VisualStudio) |
134 | 36 link_libraries(netapi32) |
37 endif() | |
38 | |
39 | |
890 | 40 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
41 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD") | |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
42 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
566
6a3e2ca7a7a0
the client library compiles with LSB 4.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
564
diff
changeset
|
43 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -I${LSB_PATH}/include") |
6a3e2ca7a7a0
the client library compiles with LSB 4.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
564
diff
changeset
|
44 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") |
6a3e2ca7a7a0
the client library compiles with LSB 4.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
564
diff
changeset
|
45 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -L${LSB_LIBPATH}") |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
46 endif() |
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
47 |
134 | 48 add_definitions( |
49 -D_LARGEFILE64_SOURCE=1 | |
50 -D_FILE_OFFSET_BITS=64 | |
51 ) | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
52 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed") |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
53 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
54 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") |
134 | 55 |
56 # Remove the "-rdynamic" option | |
57 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
58 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
59 link_libraries(uuid pthread rt) | |
60 | |
61 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
62 add_definitions( | |
63 -DWINVER=0x0501 | |
64 -D_CRT_SECURE_NO_WARNINGS=1 | |
65 ) | |
66 link_libraries(rpcrt4 ws2_32) | |
495 | 67 |
68 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
69 # This is a patch for MinGW64 | |
70 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") | |
71 endif() | |
72 | |
918 | 73 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
74 add_definitions( | |
75 -D_XOPEN_SOURCE=1 | |
76 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
77 link_libraries(iconv) |
918 | 78 |
134 | 79 endif() |
80 | |
81 | |
82 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
83 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H) | |
84 else() | |
85 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H) | |
86 endif() | |
87 | |
88 if (NOT HAVE_UUID_H) | |
89 message(FATAL_ERROR "Please install the uuid-dev package") | |
90 endif() | |
91 | |
92 if (${STATIC_BUILD}) | |
93 add_definitions(-DORTHANC_STATIC=1) | |
94 else() | |
95 add_definitions(-DORTHANC_STATIC=0) | |
96 endif() |