1
0
mirror of synced 2024-11-14 18:47:41 +01:00
jujube/test/meson.build
2020-02-19 17:32:56 +01:00

13 lines
289 B
Meson

test_files = [
'cereal_specialize_enums.cpp',
'cereal_unordered_map.cpp'
]
foreach test_file : test_files
test_executable = executable(
test_file+'.out',
test_file,
include_directories : inc
)
test(test_file+' test', test_executable)
endforeach