Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure mfem will build without fms. #5501

Merged
merged 3 commits into from Mar 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/tools/dev/scripts/bv_support/bv_mfem.sh
Expand Up @@ -23,6 +23,9 @@ function bv_mfem_depends_on
if [[ "$DO_FMS" == "yes" ]] ; then
depends_on="$depends_on fms"
fi
if [[ "$DO_HDF5" == "yes" ]] ; then
depends_on="$depends_on hdf5"
fi

echo $depends_on
}
Expand Down Expand Up @@ -143,6 +146,8 @@ function build_mfem
fi
if [[ "$DO_FMS" == "yes" ]] ; then
vopts="${vopts} -DMFEM_USE_FMS=ON -DFMS_DIR=${VISITDIR}/fms/${FMS_VERSION}/${VISITARCH}"
else
vopts="${vopts} -DMFEM_USE_FMS=OFF"
fi
vopts="${vopts} -DMFEM_USE_ZLIB=ON"

Expand Down