summaryrefslogtreecommitdiff
path: root/libgweather/tests/meson.build
blob: 201fd39321de77fa6127de80207ef4628fac9cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test_cargs = [
  '-DTEST_LOCATIONS="@0@"'.format(locations_bin.full_path()),
  '-DSCHEMASDIR="@0@/schemas"'.format(meson.source_root()),
  '-DSCHEMAS_BUILDDIR="@0@/schemas"'.format(meson.build_root()),
]

test('test_libgweather',
  executable('test_libgweather',
    sources: ['test_libgweather.c'],
    c_args: test_cargs,
    dependencies: libgweather_static_dep,
    install: false,
  ),
  depends: [locations_bin],
)