Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 564:06119badb2b0 laaw
lsb cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 24 Sep 2013 10:43:03 +0200 |
parents | ded40a9e8cc8 |
children | 6a3e2ca7a7a0 |
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") | |
8 elseif (${MSVC}) | |
9 # http://stackoverflow.com/a/6510446 | |
10 foreach(flag_var | |
11 CMAKE_C_FLAGS_DEBUG | |
12 CMAKE_CXX_FLAGS_DEBUG | |
13 CMAKE_C_FLAGS_RELEASE | |
14 CMAKE_CXX_FLAGS_RELEASE | |
15 CMAKE_C_FLAGS_MINSIZEREL | |
16 CMAKE_CXX_FLAGS_MINSIZEREL | |
17 CMAKE_C_FLAGS_RELWITHDEBINFO | |
18 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
19 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
20 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
21 endforeach(flag_var) | |
22 add_definitions( | |
23 -D_CRT_SECURE_NO_WARNINGS=1 | |
24 -D_CRT_SECURE_NO_DEPRECATE=1 | |
25 ) | |
26 include_directories(${CMAKE_SOURCE_DIR}/Resources/VisualStudio) | |
27 link_libraries(netapi32) | |
28 endif() | |
29 | |
30 | |
31 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") | |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
32 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
564 | 33 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I${LSB_PATH}/include") |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
34 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdinc++ -I${LSB_PATH}/include -I${LSB_PATH}/include/c++ -I${LSB_PATH}/include/c++/backward -fpermissive") |
561 | 35 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L${LSB_LIBPATH}") |
193
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
36 endif() |
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
37 |
134 | 38 add_definitions( |
39 -D_LARGEFILE64_SOURCE=1 | |
40 -D_FILE_OFFSET_BITS=64 | |
41 ) | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
42 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
|
43 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
|
44 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") |
134 | 45 |
46 # Remove the "-rdynamic" option | |
47 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
48 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
49 link_libraries(uuid pthread rt) | |
50 | |
51 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
52 add_definitions( | |
53 -DWINVER=0x0501 | |
54 -D_CRT_SECURE_NO_WARNINGS=1 | |
55 ) | |
56 link_libraries(rpcrt4 ws2_32) | |
495 | 57 |
58 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
59 # This is a patch for MinGW64 | |
60 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") | |
61 endif() | |
62 | |
134 | 63 endif() |
64 | |
65 | |
66 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
67 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H) | |
68 else() | |
69 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H) | |
70 endif() | |
71 | |
72 if (NOT HAVE_UUID_H) | |
73 message(FATAL_ERROR "Please install the uuid-dev package") | |
74 endif() | |
75 | |
76 if (${STATIC_BUILD}) | |
77 add_definitions(-DORTHANC_STATIC=1) | |
78 else() | |
79 add_definitions(-DORTHANC_STATIC=0) | |
80 endif() |