2020-02-19 17:32:56 +01:00
|
|
|
test_files = [
|
|
|
|
'cereal_specialize_enums.cpp',
|
2020-03-03 01:19:22 +01:00
|
|
|
'cereal_unordered_map.cpp',
|
|
|
|
'cereal_specialize_path.cpp'
|
2020-02-19 17:32:56 +01:00
|
|
|
]
|
2020-02-19 00:51:26 +01:00
|
|
|
|
2020-02-19 17:32:56 +01:00
|
|
|
foreach test_file : test_files
|
|
|
|
test_executable = executable(
|
|
|
|
test_file+'.out',
|
|
|
|
test_file,
|
|
|
|
include_directories : inc
|
|
|
|
)
|
|
|
|
test(test_file+' test', test_executable)
|
|
|
|
endforeach
|