Files
SERiF/tests/meson.build
Emily Boudreaux 2f753c6ea0 test(tests/meshIO): added basic test suite for meshIO
just tests the constuctor, getMesh, and isLoaded method. This confirms that a basic spherical mesh can be loaded in correctly
2025-02-16 15:10:13 -05:00

14 lines
329 B
Meson

# Google Test dependency
gtest_dep = dependency('gtest', main: true, required : true)
gtest_nomain_dep = dependency('gtest', main: false, required : true)
# Subdirectories for unit and integration tests
subdir('dobj')
subdir('const')
subdir('opatIO')
subdir('meshIO')
# Subdirectories for sandbox tests
subdir('dobj_sandbox')