Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid
[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 set(custom_flags ${custom_flags} CACHE FORCE "Customers flags add to cmake_c_flag")
8
9 if(NOT CMAKE_INSTALL_PREFIX)
10         set(CMAKE_INSTALL_PREFIX "/usr/local/simgrid/" CACHE PATH "Path where to install project")
11 else(NOT CMAKE_INSTALL_PREFIX)
12         set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE PATH "Path where to install project")
13 endif(NOT CMAKE_INSTALL_PREFIX)
14
15 set(pipol_user ${pipol_user} CACHE TYPE INTERNAL FORCE)
16
17 option(release "Whether Release Mode is activated (disable tests on experimental parts)" on)
18 option(enable_compile_optimizations "" on)
19 option(enable_debug "Set NDEBUG flag" on)
20
21 option(enable_gtnets "Whether gtnets model is activated." off)
22 option(enable_ns3    "Whether ns3 model is activated." off)
23 option(enable_lua "Whether the lua bindings are activated." off)
24 option(enable_compile_warnings "Whether compilation warnings should be turned into errors." off)
25 option(enable_maintainer_mode "Whether flex and flexml files should be rebuilt." off)
26 option(enable_tracing "Tracing simulations for visualization." off)
27 option(enable_latency_bound_tracking "" off)
28 option(enable_coverage "Enable coverage." off)
29 option(enable_memcheck "Enable memcheck." off)
30 option(enable_print_message "Enable print message during config." off)
31 option(enable_model-checking "" off)
32 option(enable_lib_static "" off)
33 option(enable_jedule "Jedule output of SimDAG." off)
34 option(enable_debug "Set NDEBUG flag" on)
35 option(enable_supernovae "Whether Supernovae mode (helping compiler optimization) is activated." on)
36
37 if(enable_supernovae AND enable_model-checking)
38         set(enable_model-checking false CACHE TYPE INTERNAL FORCE)
39         message("\n\nWith supernovae mode the model checking must be disable.!!!\n\n")
40 endif(enable_supernovae AND enable_model-checking)
41
42 if(WIN32)
43   option(enable_smpi "Whether the smpi library is compiled." off)
44 else(WIN32)
45   option(enable_smpi "Whether the smpi library is compiled." on)
46 endif(WIN32)
47
48 mark_as_advanced(HAVE_SSH)
49 mark_as_advanced(HAVE_RSYNC)
50 #mark_as_advanced(enable_coverage)
51 #mark_as_advanced(enable_memcheck)
52 #mark_as_advanced(enable_print_message)
53 mark_as_advanced(BIBTEX2HTML_PATH)
54 mark_as_advanced(BUILDNAME)
55 mark_as_advanced(ADDR2LINE)
56 mark_as_advanced(BIBTOOL_PATH)
57 mark_as_advanced(BUILD_TESTING)
58 mark_as_advanced(CMAKE_BUILD_TYPE)
59 mark_as_advanced(DART_ROOT)
60 mark_as_advanced(DOXYGEN_PATH)
61 mark_as_advanced(FIG2DEV_PATH)
62 mark_as_advanced(FLEXML_EXE)
63 mark_as_advanced(FLEX_EXE)
64 mark_as_advanced(PERL_EXECUTABLE)
65 mark_as_advanced(GCOV_PATH)
66 mark_as_advanced(ICONV_PATH)
67 mark_as_advanced(MAKE_PATH)
68 mark_as_advanced(SVN)
69 mark_as_advanced(GIT)
70 mark_as_advanced(CMAKE_OSX_ARCHITECTURES)                                                                                                                  
71 mark_as_advanced(CMAKE_OSX_DEPLOYMENT_TARGET)                                                                                                              
72 mark_as_advanced(CMAKE_OSX_SYSROOT)                                                                         
73 mark_as_advanced(SED_EXE)
74 mark_as_advanced(BIBTEX2HTML)