summaryrefslogtreecommitdiffstats
path: root/test/meson.build
blob: 4d81a017f9038629d2d9c3f8975906ec894c3f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test_mock = executable('test-mock', 
    'test-mock.c', include_directories: include_dir,
    dependencies: deps,
    link_with: lib,
)

test_ring_buffer = executable('test-ring-buffer', 
    'test-ring-buffer.c', include_directories: include_dir,
    dependencies: deps,
    link_with: lib,
)

test('mock', test_mock)
test('test-ring-buffer', test_ring_buffer)