Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
93982f45e438306530942d6f8fc87ba9d307807b
[simgrid.git] / buildtools / Cmake / Flags.cmake
1 set(warnCFLAGS "")
2 set(optCFLAGS "")
3
4 if(NOT __VISUALC__ AND NOT __BORLANDC__)
5         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}-g3")
6 else(NOT __VISUALC__ AND NOT __BORLANDC__)
7     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}/Zi")
8     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}/Zi")
9 endif(NOT __VISUALC__ AND NOT __BORLANDC__)
10
11 if(enable_compile_warnings)
12         set(warnCFLAGS "-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat -Wwrite-strings -Wno-unused-function -Wno-unused-parameter -Wno-strict-aliasing -Wno-format-nonliteral -Werror ")
13 endif(enable_compile_warnings)
14
15 if(enable_compile_optimizations)
16         set(optCFLAGS "-O3 -finline-functions -funroll-loops -fno-strict-aliasing ")
17 else(enable_compile_optimizations)
18         set(optCFLAGS "-O0 ")
19 endif(enable_compile_optimizations)
20
21 if(NOT enable_debug)
22                 set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}")
23 endif(NOT enable_debug)
24
25 set(CMAKE_C_FLAGS "${optCFLAGS}${warnCFLAGS}${CMAKE_C_FLAGS}")
26
27 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${custom_flags}")
28
29 if(WIN32)
30         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=i486")
31 endif(WIN32)
32
33 # Try to make Mac a bit more complient to open source standards
34 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
35         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_XOPEN_SOURCE")
36 endif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
37
38 if(enable_coverage)
39         find_program(GCOV_PATH gcov)
40         if(GCOV_PATH)
41                 SET(COVERAGE_COMMAND "${GCOV_PATH}" CACHE TYPE FILEPATH FORCE)
42                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
43                 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
44                 add_definitions(-fprofile-arcs -ftest-coverage)
45                 endif(GCOV_PATH)
46 endif(enable_coverage)
47