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

initial slepc stuff

parent 1bba6236
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,7 @@ option(ENABLE_OCC "Enable OpenCASCADE geometrical models" ON) ...@@ -39,6 +39,7 @@ option(ENABLE_OCC "Enable OpenCASCADE geometrical models" ON)
option(ENABLE_OSMESA "Use OSMesa for offscreen rendering" OFF) option(ENABLE_OSMESA "Use OSMesa for offscreen rendering" OFF)
option(ENABLE_PARSER "Build the GEO file parser" ON) option(ENABLE_PARSER "Build the GEO file parser" ON)
option(ENABLE_PETSC "Enable PETSc linear algebra solvers" ON) option(ENABLE_PETSC "Enable PETSc linear algebra solvers" ON)
option(ENABLE_SLEPC "Enable SLEPc eigensolvers" ON)
option(ENABLE_POST "Build the post-processing module" ON) option(ENABLE_POST "Build the post-processing module" ON)
option(ENABLE_QT "Build QT GUI" OFF) option(ENABLE_QT "Build QT GUI" OFF)
option(ENABLE_TAUCS "Enable Taucs linear algebra solver" ON) option(ENABLE_TAUCS "Enable Taucs linear algebra solver" ON)
...@@ -560,6 +561,10 @@ if(ENABLE_PETSC) ...@@ -560,6 +561,10 @@ if(ENABLE_PETSC)
endif(EXISTS ${ENV_PETSC_DIR}/${ENV_PETSC_ARCH}/conf/petscvariables) endif(EXISTS ${ENV_PETSC_DIR}/${ENV_PETSC_ARCH}/conf/petscvariables)
endif(ENABLE_PETSC) endif(ENABLE_PETSC)
if(HAVE_PETSC AND ENABLE_SLEPC)
message(STATUS "Checking for SLEPc... TODO")
endif(HAVE_PETSC AND ENABLE_SLEPC)
if(ENABLE_OCC) if(ENABLE_OCC)
if(WIN32) if(WIN32)
set(OCC_SYS_NAME win32) set(OCC_SYS_NAME win32)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment