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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# SPDX-License-Identifier: CC0-1.0
if opt_cam.disabled() or not libevent.found()
cam_enabled = false
subdir_done()
endif
cam_enabled = true
cam_sources = files([
'camera_session.cpp',
'capture_script.cpp',
'file_sink.cpp',
'frame_sink.cpp',
'main.cpp',
])
cam_cpp_args = [apps_cpp_args]
libdrm = dependency('libdrm', required : false)
libjpeg = dependency('libjpeg', required : false)
libsdl2 = dependency('SDL2', required : false)
if libdrm.found()
cam_cpp_args += [ '-DHAVE_KMS' ]
cam_sources += files([
'drm.cpp',
'kms_sink.cpp'
])
endif
if libsdl2.found()
cam_cpp_args += ['-DHAVE_SDL']
cam_sources += files([
'sdl_sink.cpp',
'sdl_texture.cpp',
'sdl_texture_yuv.cpp',
])
if libjpeg.found()
cam_cpp_args += ['-DHAVE_LIBJPEG']
cam_sources += files([
'sdl_texture_mjpg.cpp'
])
endif
endif
cam = executable('cam', cam_sources,
link_with : apps_lib,
dependencies : [
libatomic,
libcamera_public,
libdrm,
libevent,
libjpeg,
libsdl2,
libtiff,
libyaml,
],
cpp_args : cam_cpp_args,
install : true)
|