comparison Orthanc/Resources/CMake/Compiler.cmake @ 3:d5027f9f676a

fix build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 01 Jun 2015 15:12:22 +0200
parents
children 1fb480a156fd
comparison
equal deleted inserted replaced
2:8f22ed9d48d5 3:d5027f9f676a
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")
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
14 elseif (${MSVC})
15 # Use static runtime under Visual Studio
16 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace
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)
30
31 # Add /Zm256 compiler option to Visual Studio to fix PCH errors
32 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256")
33
34 add_definitions(
35 -D_CRT_SECURE_NO_WARNINGS=1
36 -D_CRT_SECURE_NO_DEPRECATE=1
37 )
38 include_directories(${ORTHANC_ROOT}/Resources/ThirdParty/VisualStudio)
39 link_libraries(netapi32)
40 endif()
41
42
43 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR
44 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR
45 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
46 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined")
47 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined")
48
49 # Remove the "-rdynamic" option
50 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html
51 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
52 link_libraries(uuid pthread rt)
53
54 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
55 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed")
56 add_definitions(
57 -D_LARGEFILE64_SOURCE=1
58 -D_FILE_OFFSET_BITS=64
59 )
60 link_libraries(dl)
61 endif()
62
63 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
64 add_definitions(
65 -DWINVER=0x0501
66 -D_CRT_SECURE_NO_WARNINGS=1
67 )
68 link_libraries(rpcrt4 ws2_32)
69
70 if (${CMAKE_COMPILER_IS_GNUCXX})
71 # This is a patch for MinGW64
72 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++")
73
74 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD)
75 if (HAVE_WIN_PTHREAD)
76 # This line is necessary to compile with recent versions of MinGW,
77 # otherwise "libwinpthread-1.dll" is not statically linked.
78 SET(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -Wl,-Bstatic -lstdc++ -lpthread -Wl,-Bdynamic")
79 add_definitions(-DHAVE_WIN_PTHREAD=1)
80 else()
81 add_definitions(-DHAVE_WIN_PTHREAD=0)
82 endif()
83 endif()
84
85 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
86 add_definitions(
87 -D_XOPEN_SOURCE=1
88 )
89 link_libraries(iconv)
90
91 endif()
92
93
94 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase")
95 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -I${LSB_PATH}/include")
96 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")
97 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --lsb-target-version=${LSB_TARGET_VERSION} -L${LSB_LIBPATH}")
98 endif()
99
100
101 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
102 # In FreeBSD, the "/usr/local/" folder contains the ports and need to be imported
103 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include")
104 SET(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include -I/usr/local/include/jsoncpp")
105 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib")
106 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib")
107 endif()
108
109
110 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
111 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H)
112 else()
113 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H)
114 endif()
115
116 if (NOT HAVE_UUID_H)
117 message(FATAL_ERROR "Please install the uuid-dev package")
118 endif()
119
120
121 if (${STATIC_BUILD})
122 add_definitions(-DORTHANC_STATIC=1)
123 else()
124 add_definitions(-DORTHANC_STATIC=0)
125 endif()