Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cmake: move some bits to a better location
[simgrid.git] / tools / cmake / Option.cmake
1 ### ARGs use -D[var]=[ON/OFF] or [1/0] or [true/false](see below)
2 ### ex: cmake -Denable_java=ON -Denable_ns3=ON ./
3
4 set(BIBTEX2HTML ${BIBTEX2HTML} CACHE PATH "Path to bibtex2html")
5
6 if(NOT CMAKE_INSTALL_PREFIX)
7   set(CMAKE_INSTALL_PREFIX "/usr/local/simgrid/" CACHE PATH "Path where this project should be installed")
8 else()
9   set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE PATH "Path where this project should be installed")
10 endif()
11
12 set(pipol_user ${pipol_user} CACHE INTERNAL "pipol_user" FORCE)
13 mark_as_advanced(pipol_user)
14
15 option(release "Whether Release Mode is activated (disable tests on experimental parts)" on)
16 option(enable_compile_optimizations "Whether to produce efficient code for the SimGrid library" on)
17 option(enable_documentation "Whether to produce documentation" on)
18 option(enable_ns3    "Whether ns3 model is activated." off)
19 option(enable_java   "Whether the Java bindings are activated." off)
20 option(enable_scala  "Whether the Scala bindings are activated." off)
21 option(enable_lua    "Whether the Lua bindings are activated." off)
22 option(enable_compile_warnings "Whether compilation warnings should be turned into errors." off)
23 option(enable_maintainer_mode "Whether flex and flexml files should be rebuilt." off)
24 option(enable_tracing "Tracing simulations for visualization." on)
25 option(enable_latency_bound_tracking "" off)
26
27 option(enable_ust "Enable userspace static tracepoint (lttng-ust)." off)
28 if(enable_sdt)
29   add_definitions(-DUSE_SDT)
30 endif()
31   
32 option(enable_sdt "Enable statically defined tracepoint (strace/systemtap)." off)
33 if(enable_ust)
34   add_definitions(-DUSE_UST)
35 endif()
36     
37 option(enable_coverage "Whether coverage should be enabled." off)
38 mark_as_advanced(enable_coverage)
39 mark_as_advanced(enable_memcheck)
40
41 option(enable_memcheck "Enable memcheck." off)
42 option(enable_memcheck_xml "Enable memcheck with xml output." off)
43 mark_as_advanced(enable_memcheck_xml)
44
45 option(enable_mallocators "Enable mallocators (disable only for debugging purpose)." on)
46
47 option(enable_print_message "Enable print message during config." off)
48 mark_as_advanced(enable_print_message)
49
50 option(enable_model-checking "Turn this on to experiment with our prototype of model-checker (hinders the simulation's performance even if turned off at runtime)" off)
51 option(enable_lib_static "" off)
52 option(enable_lib_in_jar "Whether the native libraries are bundled in a Java jar file" on)
53 option(enable_jedule "Jedule output of SimDAG." off)
54 option(enable_debug "Turn this off to remove all debug messages at compile time (faster, but no debug activatable)" on)
55 option(enable_msg_deprecated "This option enables the use of deprecated MSG functions" off)
56
57 if(WIN32)
58   option(enable_smpi "Whether SMPI in included in library." off)
59   option(enable_smpi_MPICH3_testsuite "Whether the test suite form MPICH 3 should be built" off)
60 else()
61   option(enable_smpi "Whether SMPI in included in library." on)
62   option(enable_smpi_MPICH3_testsuite "Whether the test suite form MPICH 3 should be built" off)
63 endif()
64 option(enable_smpi_ISP_testsuite "Whether the test suite from ISP should be built." off)
65
66 if(enable_scala AND NOT enable_java)
67   message(WARNING "For using scala you must turn java on with this command:\ncmake -Denable_java=on .")
68 endif()
69
70 mark_as_advanced(HAVE_SSH)
71 mark_as_advanced(HAVE_RSYNC)
72 mark_as_advanced(BIBTEX2HTML_PATH)
73 mark_as_advanced(BUILDNAME)
74 mark_as_advanced(ADDR2LINE)
75 mark_as_advanced(BIBTOOL_PATH)
76 mark_as_advanced(BUILD_TESTING)
77 mark_as_advanced(CMAKE_BUILD_TYPE)
78 mark_as_advanced(DART_ROOT)
79 mark_as_advanced(DOXYGEN_PATH)
80 mark_as_advanced(FIG2DEV_PATH)
81 mark_as_advanced(FLEXML_EXE)
82 mark_as_advanced(FLEX_EXE)
83 mark_as_advanced(PERL_EXECUTABLE)
84 mark_as_advanced(GCOV_PATH)
85 mark_as_advanced(ICONV_PATH)
86 mark_as_advanced(MAKE_PATH)
87 mark_as_advanced(SVN)
88 mark_as_advanced(GIT)
89 mark_as_advanced(CMAKE_OSX_ARCHITECTURES)
90 mark_as_advanced(CMAKE_OSX_DEPLOYMENT_TARGET)
91 mark_as_advanced(CMAKE_OSX_SYSROOT)
92 mark_as_advanced(SED_EXE)
93 mark_as_advanced(BIBTEX2HTML)
94 mark_as_advanced(CMAKE_C_LINK_FLAGS)
95 mark_as_advanced(CMAKE_CXX_FLAGS)
96 mark_as_advanced(CMAKE_Fortran_LINK_FLAGS)