hack/tests/meson.build
2022-03-02 11:08:14 +03:00

21 lines
321 B
Meson

gtest_proj = subproject('gtest')
gtest_dep = gtest_proj.get_variable('gtest_main_dep')
test(
'split_str',
executable(
'split_str',
'string.cpp',
dependencies: [ string_dep, gtest_dep ]
)
)
test(
'within',
executable(
'within',
'range.cpp',
dependencies: [ range_dep, gtest_dep ]
)
)