vectorwrapper/test/unit/meson.build

18 lines
455 B
Meson

compiler_opts = ['-DVWR_WITH_IMPLICIT_CONVERSIONS', '-DVWR_EXTRA_ACCESSORS']
exec_target = executable(meson.project_name(),
'test_conversions.cpp',
'test_ops.cpp',
'example.cpp',
'test_get_at.cpp',
'test_operators.cpp',
'test_sequence_range.cpp',
'test_offset_getters.cpp',
'test_custom_type.cpp',
install: false,
dependencies: [gtest_dep, vectorwrapper_dep],
cpp_args: compiler_opts,
)
test(meson.project_name() + ' unit test', exec_target)