14 lines
323 B
Meson
14 lines
323 B
Meson
test_files = [
|
|
'cereal_specialize_enums.cpp',
|
|
'cereal_unordered_map.cpp',
|
|
'cereal_specialize_path.cpp'
|
|
]
|
|
|
|
foreach test_file : test_files
|
|
test_executable = executable(
|
|
test_file+'.out',
|
|
test_file,
|
|
include_directories : inc
|
|
)
|
|
test(test_file+' test', test_executable)
|
|
endforeach |