/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2019, Google Inc. * * control_ids.h - Control ID list * * This file is auto-generated. Do not edit. */ #ifndef __LIBCAMERA_CONTROL_IDS_H__ #define __LIBCAMERA_CONTROL_IDS_H__ #include #include #include namespace libcamera { namespace controls { enum { ${ids} }; ${controls} extern const ControlIdMap controls; namespace draft { ${draft_controls} } /* namespace draft */ } /* namespace controls */ } /* namespace libcamera */ #endif /* __LIBCAMERA_CONTROL_IDS_H__ */ cgit logo index : libcamera/jmondi/libcamera.git
Jacopo Mondi's clone of libcameragit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
blob: 130ddbb55916f23b1d717ac5e4f9dcf494f54244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-License-Identifier: CC0-1.0

libevent = dependency('libevent_pthreads', required : get_option('lc-compliance'))

if not libevent.found()
    lc_compliance_enabled = false
    subdir_done()
endif

if get_option('android_platform') == 'cros'
    libgtest = dependency('gtest', required : get_option('lc-compliance'))

    if not libgtest.found()
        lc_compliance_enabled = false
        subdir_done()
    endif

else
    libgtest_sp = subproject('gtest')
    libgtest = libgtest_sp.get_variable('gtest_dep')
endif

lc_compliance_enabled = true

lc_compliance_sources = files([
    '../cam/event_loop.cpp',
    '../cam/options.cpp',
    'environment.cpp',
    'main.cpp',
    'simple_capture.cpp',
    'capture_test.cpp',
])

lc_compliance  = executable('lc-compliance', lc_compliance_sources,
                            cpp_args : [ '-fexceptions' ],
                            dependencies : [
                                libatomic,
                                libcamera_public,
                                libevent,
                                libgtest,
                            ],
                            install : true)