summaryrefslogtreecommitdiff
path: root/test/meson.build
blob: da0aea9678d127cee90d34f81db20effc3a9b596 (plain)
1
2
3
4
5
6
7
8
9
10
11
libtest_sources = files([
    'test.cpp',
])

libtest = static_library('libtest', libtest_sources)

test_init = executable('test_init', 'init.cpp',
                       link_with : libcamera,
                       include_directories : libcamera_includes)

test('Initialisation test', test_init)