Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge msg_vm.c - adrien (please note that there is one line (destruction of the tx_pr...
[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 mark_as_advanced(pipol_user)
16
17 option(release "Whether Release Mode is activated (disable tests on experimental parts)" on)
18 option(enable_compile_optimizations "Whether to produce efficient code for the SimGrid library" on)
19 option(enable_documentation "Whether to produce documentation" on)
20 option(enable_gtnets "Whether gtnets model is activated." off)
21 option(enable_ns3    "Whether ns3 model is activated." off)
22 option(enable_java   "Whether the Java bindings are activated." off)
23 option(enable_scala  "Whether the Scala bindings are activated." off)
24 option(enable_lua    "Whether the lua bindings are activated." off)
25 option(enable_compile_warnings "Whether compilation warnings should be turned into errors." off)
26 option(enable_maintainer_mode "Whether flex and flexml files should be rebuilt." off)
27 option(enable_tracing "Tracing simulations for visualization." on)
28 option(enable_latency_bound_tracking "" off)
29 option(enable_coverage "Enable coverage." off)
30 option(enable_ust "Enable userspace statuic tracepoint (lttng-ust)." off)
31 option(enable_sdt "Enable statically defined tracepoint (strace/systemtap)." off)
32 mark_as_advanced(enable_coverage)
33 option(enable_memcheck "Enable memcheck." off)
34 option(enable_memcheck_xml "Enable memcheck with xml output." off)
35 mark_as_advanced(enable_memcheck)
36 mark_as_advanced(enable_memcheck_xml)
37 option(enable_mallocators "Enable mallocators (disable only for debugging purpose)." on)
38 option(enable_print_message "Enable print message during config." off)
39 mark_as_advanced(enable_print_message)
40 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)
41 option(enable_mc_content_adressable_pages "Content addressable page storage (rely on the hash of the pages for page snapshot)" off)
42 option(enable_lib_static "" off)
43 option(enable_lib_in_jar "Whether the native libraries are bundled into the Java jar file" on)
44 option(enable_jedule "Jedule output of SimDAG." off)
45 option(enable_debug "Turn this off to remove all debug messages at compile time (faster, but no debug activable)" on)
46 option(enable_msg_deprecated "This option enable the use of msg deprecated functions" off)
47
48 if(WIN32)
49   option(enable_smpi "Whether SMPI in included in library." off)
50   option(enable_smpi_MPICH3_testsuite "Whether the test suite form MPICH 3 should be built" off)
51 else()
52   option(enable_smpi "Whether SMPI in included in library." on)
53   option(enable_smpi_MPICH3_testsuite "Whether the test suite form MPICH 3 should be built" off)
54 endif()
55 option(enable_smpi_ISP_testsuite "Whether the test suite form ISP should be built" off)
56
57 if(enable_scala AND NOT enable_java)
58   message(WARNING "For using scala you must turn java on with command:\ncmake -Denable_java=on .")
59 endif()
60
61 mark_as_advanced(HAVE_SSH)
62 mark_as_advanced(HAVE_RSYNC)
63 mark_as_advanced(BIBTEX2HTML_PATH)
64 mark_as_advanced(BUILDNAME)
65 mark_as_advanced(ADDR2LINE)
66 mark_as_advanced(BIBTOOL_PATH)
67 mark_as_advanced(BUILD_TESTING)
68 mark_as_advanced(CMAKE_BUILD_TYPE)
69 mark_as_advanced(DART_ROOT)
70 mark_as_advanced(DOXYGEN_PATH)
71 mark_as_advanced(FIG2DEV_PATH)
72 mark_as_advanced(FLEXML_EXE)
73 mark_as_advanced(FLEX_EXE)
74 mark_as_advanced(PERL_EXECUTABLE)
75 mark_as_advanced(GCOV_PATH)
76 mark_as_advanced(ICONV_PATH)
77 mark_as_advanced(MAKE_PATH)
78 mark_as_advanced(SVN)
79 mark_as_advanced(GIT)
80 mark_as_advanced(CMAKE_OSX_ARCHITECTURES)
81 mark_as_advanced(CMAKE_OSX_DEPLOYMENT_TARGET)
82 mark_as_advanced(CMAKE_OSX_SYSROOT)
83 mark_as_advanced(SED_EXE)
84 mark_as_advanced(BIBTEX2HTML)
85 mark_as_advanced(CMAKE_C_LINK_FLAGS)
86 mark_as_advanced(CMAKE_CXX_FLAGS)
87 mark_as_advanced(CMAKE_Fortran_LINK_FLAGS)