From: Timo Heister Date: Sun, 4 Oct 2015 17:10:54 +0000 (-0400) Subject: update opencascade instructions X-Git-Tag: v8.4.0-rc2~304^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1714%2Fhead;p=dealii.git update opencascade instructions This makes the opencascade installation smaller and more importantly avoids dependencies to X11 and OpenGL dev libs. --- diff --git a/doc/external-libs/opencascade.html b/doc/external-libs/opencascade.html index 3471fb90a5..5bb2313311 100644 --- a/doc/external-libs/opencascade.html +++ b/doc/external-libs/opencascade.html @@ -37,11 +37,15 @@ It is a good practice to build in a separate directory:
 mkdir build
 cd build
-cmake -DOCE_INSTALL_PREFIX=/path/to/where/you/want/oce ..
+cmake -D OCE_INSTALL_PREFIX=/path/to/where/you/want/oce \
+      -D OCE_TESTING=OFF \
+      -D OCE_VISUALISATION=OFF \
+      -D OCE_DISABLE_X11=ON \
+      ..
 make install
 
-The default options are good for the deal.II library. +This will turn off some packages we don't need. The default package options also work, though.

Interfacing deal.II to OpenCASCADE