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

*** empty log message ***

parent 0dc136b4
No related branches found
No related tags found
No related merge requests found
...@@ -26,14 +26,14 @@ GMSH_API =\ ...@@ -26,14 +26,14 @@ GMSH_API =\
Geo/MTetrahedron.h Geo/MHexahedron.h Geo/MPrism.h Geo/MPyramid.h\ Geo/MTetrahedron.h Geo/MHexahedron.h Geo/MPrism.h Geo/MPyramid.h\
Geo/discreteVertex.h Geo/discreteEdge.h Geo/discreteFace.h Geo/discreteRegion.h\ Geo/discreteVertex.h Geo/discreteEdge.h Geo/discreteFace.h Geo/discreteRegion.h\
Geo/SPoint2.h Geo/SPoint3.h Geo/SVector3.h Geo/SBoundingBox3d.h Geo/Pair.h Geo/Range.h\ Geo/SPoint2.h Geo/SPoint3.h Geo/SVector3.h Geo/SBoundingBox3d.h Geo/Pair.h Geo/Range.h\
Geo/CellComplex.h\ Geo/CellComplex.h Geo/ChainComplex.h\
Geo/ChainComplex.h\
contrib/kbipack/gmp_normal_form.h contrib/kbipack/gmp_matrix.h contrib/kbipack/gmp_blas.h\ contrib/kbipack/gmp_normal_form.h contrib/kbipack/gmp_matrix.h contrib/kbipack/gmp_blas.h\
Numeric/Gauss.h Numeric/FunctionSpace.h Numeric/GmshMatrix.h\ Numeric/Gauss.h Numeric/FunctionSpace.h Numeric/GmshMatrix.h\
Numeric/gmshAssembler.h Numeric/gmshTermOfFormulation.h Numeric/gmshLaplace.h\ Numeric/gmshAssembler.h Numeric/gmshTermOfFormulation.h Numeric/gmshLaplace.h\
Numeric/gmshElasticity.h Numeric/gmshLinearSystem.h Numeric/gmshLinearSystemGmm.h\ Numeric/gmshElasticity.h Numeric/gmshLinearSystem.h Numeric/gmshLinearSystemGmm.h\
Numeric/gmshLinearSystemFull.h Numeric/gmshFunction.h\ Numeric/gmshLinearSystemFull.h Numeric/gmshFunction.h\
Post/PView.h Post/PViewData.h Plugin/PluginManager.h\ Post/PView.h Post/PViewData.h Plugin/PluginManager.h\
Graphics/drawContext.h\
Common/VertexArray.h Common/GmshMessage.h\ Common/VertexArray.h Common/GmshMessage.h\
Common/Gmsh.h Common/GmshConfig.h Common/GmshDefines.h Common/GmshVersion.h Common/Gmsh.h Common/GmshConfig.h Common/GmshDefines.h Common/GmshVersion.h
......
...@@ -1292,7 +1292,7 @@ Optional Features: ...@@ -1292,7 +1292,7 @@ Optional Features:
Linux) Linux)
--enable-tree-browser enable tree browser (default=yes) --enable-tree-browser enable tree browser (default=yes)
--enable-mpi enable MPI support (default=no) --enable-mpi enable MPI support (default=no)
--enable-minimal build minimal standalone version (default=no)
Optional Packages: Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
...@@ -1972,6 +1972,11 @@ if test "${enable_mpi+set}" = set; then ...@@ -1972,6 +1972,11 @@ if test "${enable_mpi+set}" = set; then
enableval=$enable_mpi; enableval=$enable_mpi;
fi fi
# Check whether --enable-graphics was given.
if test "${enable_graphics+set}" = set; then
enableval=$enable_graphics;
fi
# Check whether --enable-minimal was given. # Check whether --enable-minimal was given.
if test "${enable_minimal+set}" = set; then if test "${enable_minimal+set}" = set; then
enableval=$enable_minimal; enableval=$enable_minimal;
...@@ -4237,6 +4242,11 @@ _ACEOF ...@@ -4237,6 +4242,11 @@ _ACEOF
BO="${BO} NoParser" BO="${BO} NoParser"
fi fi
if test "x$enable_graphics" = "xyes"; then
GMSH_DIRS="${GMSH_DIRS} Graphics"
GMSH_LIBS="${GMSH_LIBS} -lGmshGraphics"
fi
GMSH_DIRS="${GMSH_DIRS} Numeric" GMSH_DIRS="${GMSH_DIRS} Numeric"
GMSH_LIBS="${GMSH_LIBS} -lGmshCommon -lGmshNumeric" GMSH_LIBS="${GMSH_LIBS} -lGmshCommon -lGmshNumeric"
......
...@@ -145,9 +145,8 @@ AC_ARG_ENABLE(tree-browser, ...@@ -145,9 +145,8 @@ AC_ARG_ENABLE(tree-browser,
AC_ARG_ENABLE(mpi, AC_ARG_ENABLE(mpi,
AC_HELP_STRING([--enable-mpi], AC_HELP_STRING([--enable-mpi],
[enable MPI support (default=no)])) [enable MPI support (default=no)]))
AC_ARG_ENABLE(minimal, AC_ARG_ENABLE(graphics)
AC_HELP_STRING([--enable-minimal], AC_ARG_ENABLE(minimal)
[build minimal standalone version (default=no)]))
dnl "minimal" build shortcut dnl "minimal" build shortcut
if test "x$enable_minimal" = "xyes"; then if test "x$enable_minimal" = "xyes"; then
...@@ -394,6 +393,11 @@ else ...@@ -394,6 +393,11 @@ else
BO="${BO} NoParser" BO="${BO} NoParser"
fi fi
if test "x$enable_graphics" = "xyes"; then
GMSH_DIRS="${GMSH_DIRS} Graphics"
GMSH_LIBS="${GMSH_LIBS} -lGmshGraphics"
fi
dnl re-add Common to work around linker shortcomings on some archs dnl re-add Common to work around linker shortcomings on some archs
GMSH_DIRS="${GMSH_DIRS} Numeric" GMSH_DIRS="${GMSH_DIRS} Numeric"
GMSH_LIBS="${GMSH_LIBS} -lGmshCommon -lGmshNumeric" GMSH_LIBS="${GMSH_LIBS} -lGmshCommon -lGmshNumeric"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment