Files
MeanField_SERiF/tests/sandbox/meson.build
Emily Boudreaux c44584c1e7 feat(quadrature): quadrature system brought over
Ported and dramatically cleaned up the quadrature system. This includes centralizing all field definitions
2026-09-19 07:35:57 -04:00

18 lines
385 B
Meson

sandboxes = [
'discritization_sandbox',
'eos_sandbox',
'finite_sandbox',
'dimensions_sandbox',
'quadrature_sandbox',
'meta_sandbox',
]
foreach sandbox: sandboxes
executable(
sandbox,
sandbox + '.cpp',
dependencies: [serif_dep, stroid_dep, nameof_dep],
build_rpath: mfem_runtime_prefix == '' ? '' : mfem_runtime_prefix / 'lib',
)
endforeach