Skip to content
Snippets Groups Projects
Commit eee18d0f authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 8f52af81
No related branches found
No related tags found
No related merge requests found
......@@ -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')
*************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment