From eee18d0f605dba6afa1a29c779812ef3dac65e6b Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 22 Nov 2006 12:27:04 +0000 Subject: [PATCH] *** empty log message *** --- doc/README.occ | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/doc/README.occ b/doc/README.occ index 2ffabd1e96..2540a34e54 100644 --- a/doc/README.occ +++ b/doc/README.occ @@ -10,20 +10,32 @@ How to build OpenCascade 6.1 for Gmsh: ./configure --prefix=/usr/local/opencascade --enable-debug=no --enable-production=yes --enable-static=yes --enable-shared=no - make FoundationClasses - make ModelingData - make ModelingAlgorithms - make DataExchange - - (or just go into each dr occ/ros/adm/make/XXX and type 'make') - -- then - - make install - - (or just go into each dir occ/ros/adm/make/XXX and type 'make install') - -(In our patched version there is a script to do all this automatically) + cd adm/make; + + for lib in TKernel TKMath TKAdvTools TKG2d TKG3d TKGeomBase TKBRep + TKGeomAlgo TKTopAlgo TKPrim TKBO TKHLR TKMesh TKShHealing TKBool + TKFillet TKFeat TKOffset TKXSBase TKIGES TKSTEPBase TKSTEPAttr + TKSTEP209 TKSTEP; do + cd $lib && make; cd ..; + done + + (This is the same as doing + make FoundationClasses + make ModelingData + make ModelingAlgorithms + and part of + make DataExchange) + +- then do + + for lib in TKernel TKMath TKAdvTools TKG2d TKG3d TKGeomBase TKBRep + TKGeomAlgo TKTopAlgo TKPrim TKBO TKHLR TKMesh TKShHealing TKBool + TKFillet TKFeat TKOffset TKXSBase TKIGES TKSTEPBase TKSTEPAttr + TKSTEP209 TKSTEP; do + cd $lib && make install; cd ..; + done + + (This is the same as a partial 'make install') ************************************************************************* -- GitLab