summaryrefslogtreecommitdiff
path: root/test/meson.build
blob: 9fac7e3922218a99391e8a77ef50d6673d3505f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
subdir('libtest')

test_libraries = [libcamera, libtest]

test_includes_public = [
    libtest_includes,
    libcamera_includes,
]

test_includes_internal = [
    test_includes_public,
    libcamera_internal_includes,
]

list = executable('list', 'list.cpp',
                  link_with : test_libraries,
                  include_directories : test_includes_public)

subdir('media_device')

test('List Camera API tests', list)