X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d44e21478c6405107f86b2139d5b7d3393b936f3..240ebba85df32f8fa2393b70e715e1d1e51d074e:/buildtools/Cmake/src/CMakeOption.txt diff --git a/buildtools/Cmake/src/CMakeOption.txt b/buildtools/Cmake/src/CMakeOption.txt index bc423e39b9..990afa4049 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 ./ +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,6 +10,7 @@ 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) @@ -22,6 +24,7 @@ option(supernovae "Supernovae mode." off) option(tracing "Tracing mode." off) option(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)