test/meson.build: move TestTime to time/

This commit is contained in:
Max Kellermann
2020-04-01 16:10:49 +02:00
parent 60610e90b1
commit a4c925c8d7
3 changed files with 17 additions and 13 deletions

16
test/time/meson.build Normal file
View File

@@ -0,0 +1,16 @@
test_time_sources = [
'TestISO8601.cxx',
]
test(
'TestTime',
executable(
'TestTime',
test_time_sources,
include_directories: inc,
dependencies: [
time_dep,
gtest_dep,
],
),
)