diff --git a/build-config/mfem/meson.build b/build-config/mfem/meson.build index ff60430..a642f0e 100644 --- a/build-config/mfem/meson.build +++ b/build-config/mfem/meson.build @@ -1,5 +1,3 @@ -patchFile = files('disable_mfem_selfcheck.patch') - mfem_cmake_options = cmake.subproject_options() mfem_cmake_options.add_cmake_defines({ 'MFEM_ENABLE_EXAMPLES': 'OFF', diff --git a/src/meson.build b/src/meson.build index 6f09cf2..64433a4 100644 --- a/src/meson.build +++ b/src/meson.build @@ -7,7 +7,6 @@ subdir('dobj') subdir('const') subdir('opatIO') subdir('meshIO') -subdir('config') subdir('probe') subdir('eos') subdir('poly') diff --git a/tests/poly/meson.build b/tests/poly/meson.build index 27eab75..17a36e5 100644 --- a/tests/poly/meson.build +++ b/tests/poly/meson.build @@ -11,7 +11,7 @@ foreach test_file : test_sources test_exe = executable( exe_name, test_file, - dependencies: [gtest_dep, polysolver_dep, probe_dep, quill_dep, config_dep], + dependencies: [gtest_dep, polysolver_dep, probe_dep, quill_dep, config_dep, gtest_main], install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly )