duckhandy/test/unit/meson.build
King_DuckZ 4d904ac689 Fix deprecation warning
Also put iterator into dhandy namespace. I don't
remember why I left it out, and it's probably a
sign I should have not done so.
2024-04-26 00:19:50 +02:00

20 lines
482 B
Meson

catch2_dep = dependency('Catch2', version: '>=3.5.2')
unit_test_prog = executable(meson.project_name(),
'int_conv_test.cpp',
'main.cpp',
'endianness_test.cpp',
'reversed_sized_array_test.cpp',
'bitfield_pack_test.cpp',
'resource_pool_test.cpp',
'version_test.cpp',
'tiger_test.cpp',
'infix_iterator.cpp',
install: false,
dependencies: [sprout_dep, catch2_dep],
include_directories: [public_incl],
)
test('unit_' + meson.project_name(),
unit_test_prog,
)