From: Martin Quinson Date: Wed, 15 May 2019 19:33:59 +0000 (+0200) Subject: cmake: do not build the documentation by default X-Git-Tag: v3.22.4~127^2~9 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5b20f19ea87a94925264a0c8313eea119dfcbc11 cmake: do not build the documentation by default --- diff --git a/docs/source/Installing_SimGrid.rst b/docs/source/Installing_SimGrid.rst index bd8e47b7cd..275e7739d4 100644 --- a/docs/source/Installing_SimGrid.rst +++ b/docs/source/Installing_SimGrid.rst @@ -211,8 +211,10 @@ enable_debug (ON/off) runtime. However, it obviously becomes impossible to get any debug info from SimGrid if something goes wrong. -enable_documentation (ON/off) - Generates the documentation pages. +enable_documentation (on/OFF) + Generates the documentation pages. Building the documentation is not + as easy as it used to be, and you should probably use the online + version for now. enable_java (on/OFF) Generates the java bindings of SimGrid. diff --git a/tools/cmake/Option.cmake b/tools/cmake/Option.cmake index d4956fa099..167d5fe747 100644 --- a/tools/cmake/Option.cmake +++ b/tools/cmake/Option.cmake @@ -22,7 +22,7 @@ option(enable_debug "Turn this off to remove all debug messages # Optional modules ### -option(enable_documentation "Whether to produce documentation" on) +option(enable_documentation "Whether to produce documentation" off) option(enable_ns3 "Whether ns3 model is activated." off) option(enable_java "Whether the Java bindings are activated." off)