X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1b30f00857843f1cee60814ed519ff82e8ef4787..69961d7d398539bb53fb07f97a0e9482fc6d872c:/buildtools/Cmake/src/CMakeOption.txt diff --git a/buildtools/Cmake/src/CMakeOption.txt b/buildtools/Cmake/src/CMakeOption.txt index bc423e39b9..df9a68bf72 100644 --- a/buildtools/Cmake/src/CMakeOption.txt +++ b/buildtools/Cmake/src/CMakeOption.txt @@ -1,6 +1,7 @@ ### ARGs use -D[var]=[ON/OFF] or [1/0] or [true/false](see after) -### ex: cmake -Ddisable_java=ON -Ddisable_gtnets=ON ./ +### ex: cmake -Denable_java=ON -Denable_gtnets=ON ./ +set(BIBTEX2HTML ${BIBTEX2HTML} CACHE PATH "Path to bibtex2html") set(gtnets_path ${gtnets_path} CACHE PATH "Path to gtnets lib") set(prefix ${prefix} CACHE PATH "Path where to install project") set(with_context ${with_context} CACHE TYPE INTERNAL FORCE) @@ -9,19 +10,21 @@ if(NOT with_context) set(with_context "auto" CACHE TYPE INTERNAL FORCE) endif(NOT with_context) -option(disable_java "This variable set the java context." off) -option(disable_lua "This variable set lua use." off) -option(disable_gtnets "This variable set the gtnets context." off) -option(disable_ruby "This variable set ruby use." off) -option(enable_compile_warnings "" off) +option(enable_gtnets "This variable set the gtnets context." on) +option(enable_java "This variable set the java context." off) +option(enable_lua "This variable set lua use." on) +option(enable_ruby "This variable set ruby use." on) + option(enable_compile_optimizations "" off) +option(enable_compile_warnings "" off) option(enable_maintainer_mode "Permit to make flex and flexml files." off) +option(enable_supernovae "Supernovae mode." off) +option(enable_tracing "Tracing MSG (for now) simulations for visualization." off) option(enable_coverage "Enable coverage." off) option(enable_memcheck "Enable memcheck." off) -option(supernovae "Supernovae mode." off) -option(tracing "Tracing mode." off) -option(print_message "Enable print message during config." off) +option(enable_print_message "Enable print message during config." off) +mark_as_advanced(BIBTEX2HTML_PATH) mark_as_advanced(LUA_LIB_PATH_1) mark_as_advanced(LUA_LIB_PATH_2) mark_as_advanced(LUA_LIB_PATH_3) @@ -42,6 +45,7 @@ mark_as_advanced(DOXYGEN_PATH) mark_as_advanced(FIG2DEV_PATH) mark_as_advanced(FLEXML_EXE) mark_as_advanced(FLEX_EXE) +mark_as_advanced(PERL_EXE) mark_as_advanced(GCC_PATH) mark_as_advanced(GCOV_PATH) mark_as_advanced(ICONV_PATH)