mirror of
https://github.com/red0124/ssp.git
synced 2025-12-14 21:59:55 +01:00
add meson support, update pipeline
This commit is contained in:
18
test/meson.build
Normal file
18
test/meson.build
Normal file
@@ -0,0 +1,18 @@
|
||||
test_sources = files([
|
||||
'test_main.cpp',
|
||||
'test_converter.cpp',
|
||||
'test_parser.cpp',
|
||||
'test_extractions.cpp',
|
||||
])
|
||||
|
||||
doctest_proj = subproject('doctest')
|
||||
doctest_dep = doctest_proj.get_variable('doctest_dep')
|
||||
|
||||
test_exe = executable('test_ssp',
|
||||
sources: test_sources,
|
||||
dependencies: doctest_dep,
|
||||
include_directories: includes,
|
||||
cpp_args: '-lstdc++fs'
|
||||
)
|
||||
|
||||
test('tests_ssp', test_exe)
|
||||
Reference in New Issue
Block a user