Files
GridFire/build-config/meson.build
Emily Boudreaux 8cfa067ad0 perf(GridFire)
More preformance improvmnets

1. Switch to mimalloc which gave a roughly 10% improvment accross the
board
2. Use much faster compososition caching
3. Reusing work vector
2025-12-07 12:34:12 -05:00

22 lines
278 B
Meson

cmake = import('cmake')
if get_option('build_python')
subdir('python')
subdir('pybind')
endif
subdir('fourdst')
subdir('sundials')
subdir('cppad')
subdir('xxHash')
subdir('eigen')
subdir('json')
subdir('CLI11')
if get_option('use_mimalloc')
subdir('mimalloc')
endif