feat(stroid): initial commit

This commit is contained in:
2026-01-27 07:18:18 -05:00
commit 70fa469baa
17 changed files with 985 additions and 0 deletions

1
build-config/meson.build Normal file
View File

@@ -0,0 +1 @@
subdir('mfem')

View File

@@ -0,0 +1,15 @@
cmake = import('cmake')
mfem_cmake_options = cmake.subproject_options()
mfem_cmake_options.add_cmake_defines({
'MFEM_ENABLE_EXAMPLES': 'OFF',
'MFEM_ENABLE_TESTING': 'OFF',
'MFEM_ENABLE_MINIAPPS': 'OFF',
'MFEM_USE_BENCMARK': 'OFF',
'BUILD_SHARED_LIBS': 'ON',
'CMAKE_SKIP_INSTALL_RULES': 'ON'
})
mfem_sp = cmake.subproject(
'mfem',
options: mfem_cmake_options)
mfem_dep = mfem_sp.dependency('mfem')