feat(GridFire): SERiF now uses GridFire

This commit is contained in:
2025-06-21 13:50:04 -04:00
parent 80e4f6c7d9
commit 4cb1a4841a
19 changed files with 42 additions and 1252 deletions

View File

@@ -0,0 +1,2 @@
gridfire_p = subproject('GridFire')
gridfire_dep = gridfire_p.get_variable('network_dep')

View File

@@ -1,9 +1,9 @@
cmake = import('cmake')
subdir('fourdst')
subdir('GridFire')
subdir('mfem')
subdir('yaml-cpp')
subdir('boost')
subdir('opatIO')
subdir('mpi')

View File

@@ -1,10 +0,0 @@
quill_cmake_options = cmake.subproject_options()
quill_cmake_options.add_cmake_defines({
'BUILD_SHARED_LIBS': 'ON',
'CMAKE_SKIP_INSTALL_RULES': 'ON'
})
quill_sp = cmake.subproject(
'quill',
options: quill_cmake_options,
)
quill_dep = quill_sp.dependency('quill')

View File

@@ -1,12 +0,0 @@
yaml_cpp_cmake_options = cmake.subproject_options()
yaml_cpp_cmake_options.add_cmake_defines({
'CMAKE_POLICY_VERSION_MINIMUM': '3.5',
'BUILD_SHARED_LIBS': 'ON',
'CMAKE_SKIP_INSTALL_RULES': 'ON',
'YAML_CPP_BUILD_TESTS': 'OFF'
})
yaml_cpp_sp = cmake.subproject(
'yaml-cpp',
options: yaml_cpp_cmake_options,
)
yaml_cpp_dep = yaml_cpp_sp.dependency('yaml-cpp')