Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Set valgrind option --track-origins=no, to make it use less memory.
[simgrid.git] / buildtools / Cmake / Option.cmake
1 ### ARGs use -D[var]=[ON/OFF] or [1/0] or [true/false](see after)
2 ### ex: cmake -Denable_java=ON -Denable_gtnets=ON ./
3
4 set(BIBTEX2HTML ${BIBTEX2HTML} CACHE PATH "Path to bibtex2html")
5 set(gtnets_path ${gtnets_path} CACHE PATH "Path to gtnets lib and include")
6 set(ns3_path ${ns3_path} CACHE PATH "Path to ns3 lib and include")
7
8 if(NOT CMAKE_INSTALL_PREFIX)
9   set(CMAKE_INSTALL_PREFIX "/usr/local/simgrid/" CACHE PATH "Path where to install project")
10 else()
11   set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE PATH "Path where to install project")
12 endif()
13
14 set(pipol_user ${pipol_user} CACHE TYPE INTERNAL FORCE)
15
16 option(release "Whether Release Mode is activated (disable tests on experimental parts)" on)
17 option(enable_compile_optimizations "" on)
18 option(enable_debug "Set NDEBUG flag" on)
19
20 option(enable_gtnets "Whether gtnets model is activated." off)
21 option(enable_ns3    "Whether ns3 model is activated." off)
22 option(enable_lua "Whether the lua bindings are activated." off)
23 option(enable_compile_warnings "Whether compilation warnings should be turned into errors." off)
24 option(enable_maintainer_mode "Whether flex and flexml files should be rebuilt." off)
25 option(enable_tracing "Tracing simulations for visualization." on)
26 option(enable_latency_bound_tracking "" off)
27 option(enable_coverage "Enable coverage." off)
28 option(enable_memcheck "Enable memcheck." off)
29 option(enable_mallocators "Enable mallocators (disable only for debugging purpose)." on)
30 option(enable_print_message "Enable print message during config." off)
31 option(enable_model-checking "Turn this on to experiment with our prototype of model-checker (hinders the simulation's performance even if turned of at runtime)" off)
32 option(enable_lib_static "" off)
33 option(enable_jedule "Jedule output of SimDAG." off)
34 option(enable_debug "Turn this off to remove all debug messages at compile time (faster, but no debug activable)" on)
35 option(enable_supernovae "Whether Supernovae mode (helping compiler optimization) is activated." off)
36 option(enable_msg_deprecated "This option enable the use of msg deprecated functions" off)
37
38 if(WIN32)
39   option(enable_smpi "Whether the smpi library is compiled." off)
40 else()
41   option(enable_smpi "Whether the smpi library is compiled." on)
42 endif()
43
44 mark_as_advanced(HAVE_SSH)
45 mark_as_advanced(HAVE_RSYNC)
46 #mark_as_advanced(enable_coverage)
47 #mark_as_advanced(enable_memcheck)
48 #mark_as_advanced(enable_print_message)
49 mark_as_advanced(BIBTEX2HTML_PATH)
50 mark_as_advanced(BUILDNAME)
51 mark_as_advanced(ADDR2LINE)
52 mark_as_advanced(BIBTOOL_PATH)
53 mark_as_advanced(BUILD_TESTING)
54 mark_as_advanced(CMAKE_BUILD_TYPE)
55 mark_as_advanced(DART_ROOT)
56 mark_as_advanced(DOXYGEN_PATH)
57 mark_as_advanced(FIG2DEV_PATH)
58 mark_as_advanced(FLEXML_EXE)
59 mark_as_advanced(FLEX_EXE)
60 mark_as_advanced(PERL_EXECUTABLE)
61 mark_as_advanced(GCOV_PATH)
62 mark_as_advanced(ICONV_PATH)
63 mark_as_advanced(MAKE_PATH)
64 mark_as_advanced(SVN)
65 mark_as_advanced(GIT)
66 mark_as_advanced(CMAKE_OSX_ARCHITECTURES)
67 mark_as_advanced(CMAKE_OSX_DEPLOYMENT_TARGET)
68 mark_as_advanced(CMAKE_OSX_SYSROOT)
69 mark_as_advanced(SED_EXE)
70 mark_as_advanced(BIBTEX2HTML)
71 mark_as_advanced(CMAKE_C_LINK_FLAGS)
72 mark_as_advanced(CMAKE_CXX_FLAGS)
73 mark_as_advanced(CMAKE_Fortran_LINK_FLAGS)