mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
20 lines
411 B
Meson
20 lines
411 B
Meson
test_sources = files([
|
|
'test_main.cpp',
|
|
'test_splitter.cpp',
|
|
'test_converter.cpp',
|
|
'test_parser.cpp',
|
|
'test_extractions.cpp',
|
|
'test_extractions_without_fast_float.cpp',
|
|
])
|
|
|
|
doctest_dep = dependency('doctest')
|
|
|
|
test_exe = executable(
|
|
'test_ssp',
|
|
sources: test_sources,
|
|
dependencies: [doctest_dep, ssp_dep],
|
|
cpp_args: '-lstdc++fs'
|
|
)
|
|
|
|
test('test_ssp', test_exe)
|