summaryrefslogtreecommitdiff
path: root/test/v4l2_subdevice/meson.build
blob: 277f29bbcc416f1df4b9b1651c2b8cdd766a2d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: CC0-1.0

v4l2_subdevice_tests = [
    {'name': 'list_formats', 'sources': ['list_formats.cpp']},
    {'name': 'test_formats', 'sources': ['test_formats.cpp']},
]

foreach test : v4l2_subdevice_tests
    exe = executable(test['name'], test['sources'], 'v4l2_subdevice_test.cpp',
        dependencies : libcamera_private,
        link_with : test_libraries,
        include_directories : test_includes_internal)
    test(test['name'], exe, suite : 'v4l2_subdevice', is_parallel : false)
endforeach
='lines'>
# SPDX-License-Identifier: CC0-1.0

# Cache system paths
libcamera_datadir = get_option('datadir') / 'libcamera'
libcamera_libdir = get_option('libdir') / 'libcamera'
libcamera_sysconfdir = get_option('sysconfdir') / 'libcamera'

config_h.set('LIBCAMERA_DATA_DIR', '"' + get_option('prefix') / libcamera_datadir + '"')
config_h.set('LIBCAMERA_SYSCONF_DIR', '"' + get_option('prefix') / libcamera_sysconfdir + '"')

summary({
         'LIBCAMERA_DATA_DIR' : config_h.get('LIBCAMERA_DATA_DIR'),
         'LIBCAMERA_SYSCONF_DIR' : config_h.get('LIBCAMERA_SYSCONF_DIR'),
         }, section : 'Paths')

# Module Signing
openssl = find_program('openssl', required : true)
if openssl.found()
    ipa_priv_key = custom_target('ipa-priv-key',
                                 output : ['ipa-priv-key.pem'],
                                 command : [gen_ipa_priv_key, '@OUTPUT@'])
    config_h.set('HAVE_IPA_PUBKEY', 1)
    ipa_sign_module = true
else
    ipa_sign_module = false
endif

# libcamera must be built first as a dependency to the other components.
subdir('libcamera')

subdir('android')
subdir('ipa')

subdir('lc-compliance')

subdir('cam')
subdir('qcam')

subdir('gstreamer')
subdir('v4l2')