Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 565:c931ac02db82 find-move-scp
refactoring of find class
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 18 Sep 2013 16:58:27 +0200 |
parents | b2b56b4e33b0 |
children | ded40a9e8cc8 |
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") |
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
33 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -nostdinc++ -I${LSB_PATH}/include -I${LSB_PATH}/include/c++ -I${LSB_PATH}/include/c++/backward -fpermissive") |
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
34 endif() |
a1b9d1e1497b
failed attempt to compile with linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
134
diff
changeset
|
35 |
134 | 36 add_definitions( |
37 -D_LARGEFILE64_SOURCE=1 | |
38 -D_FILE_OFFSET_BITS=64 | |
39 ) | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
495
diff
changeset
|
40 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
|
41 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
|
42 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") |
134 | 43 |
44 # Remove the "-rdynamic" option | |
45 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
46 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
47 link_libraries(uuid pthread rt) | |
48 | |
49 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
50 add_definitions( | |
51 -DWINVER=0x0501 | |
52 -D_CRT_SECURE_NO_WARNINGS=1 | |
53 ) | |
54 link_libraries(rpcrt4 ws2_32) | |
495 | 55 |
56 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
57 # This is a patch for MinGW64 | |
58 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") | |
59 endif() | |
60 | |
134 | 61 endif() |
62 | |
63 | |
64 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
65 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H) | |
66 else() | |
67 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H) | |
68 endif() | |
69 | |
70 if (NOT HAVE_UUID_H) | |
71 message(FATAL_ERROR "Please install the uuid-dev package") | |
72 endif() | |
73 | |
74 if (${STATIC_BUILD}) | |
75 add_definitions(-DORTHANC_STATIC=1) | |
76 else() | |
77 add_definitions(-DORTHANC_STATIC=0) | |
78 endif() |