From 089514e8c9b02e3b1d82520d0a18e2ae5cebfdd5 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 4 Oct 2015 13:10:54 -0400 Subject: [PATCH] update opencascade instructions This makes the opencascade installation smaller and more importantly avoids dependencies to X11 and OpenGL dev libs. --- doc/external-libs/opencascade.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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

-- 2.39.5