meson.build 237 Bytes
Newer Older
1
test_time_sources = [
2
  'TestConvert.cxx',
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
  'TestISO8601.cxx',
]

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