From 3179605ee7a01a20d5b92b22583d31401bc74498 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 12 Feb 2025 16:24:13 -0500 Subject: [PATCH] feat(mfem): added mfem into source tree along with patch based build system MFEM is a dependency of our code and we want to build it with our code for portability, here I add a meson subproject which fetches mfem and builds it. Because of some issues with CMake and meson I apply a patch which manually disables running tests and building examples and miniapps in mfem. This is okay as mfem here is not intenteded to be linked against other programs (though it still can be). --- build-config/meson.build | 1 + 1 file changed, 1 insertion(+) create mode 100644 build-config/meson.build diff --git a/build-config/meson.build b/build-config/meson.build new file mode 100644 index 0000000..cefc100 --- /dev/null +++ b/build-config/meson.build @@ -0,0 +1 @@ +subdir('mfem') \ No newline at end of file