hack/tests/meson.build

12 lines
211 B
Meson
Raw Normal View History

2022-02-28 12:44:18 +03:00
gtest_proj = subproject('gtest')
gtest_dep = gtest_proj.get_variable('gtest_main_dep')
test(
'split_str',
executable(
'split_str',
'split_str.cpp',
dependencies: [ string_dep, gtest_dep ]
)
)