feat(main): initial commit

This commit is contained in:
2026-02-03 08:15:49 -05:00
parent f810a9fc1d
commit 4d507738bf
15 changed files with 300009 additions and 1 deletions

8
meson.build Normal file
View File

@@ -0,0 +1,8 @@
project('mfem_test', ['cpp', 'c'], version: 'v0.1.0', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
add_project_arguments('-fvisibility=default', language: 'cpp')
subdir('build-config')
executable('main', 'main.cpp', dependencies: [mfem_dep, cli11_dep, config_dep, composition_dep, gridfire_dep])