From 3597f82ee4f005f3a2211224f785d5f7572de0ce Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Thu, 13 Mar 2025 15:11:46 -0400 Subject: [PATCH] fix(build): brought recent build changes to pointwise polytrope pointwise polytrope had some issues from the old build system. Fast fowarded it so that it has all the fixes which have been merged into main --- build-config/mfem/meson.build | 2 -- src/meson.build | 1 - tests/poly/meson.build | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) 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 )