summaryrefslogtreecommitdiff
path: root/test/time/meson.build
blob: 53b583cf14b908c4e09afefa092d6842c0ad4eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test_time_sources = [
  'TestConvert.cxx',
  'TestISO8601.cxx',
]

test(
  'TestTime',
  executable(
    'TestTime',
    test_time_sources,
    include_directories: inc,
    dependencies: [
      time_dep,
      gtest_dep,
    ],
  ),
)