blob: 71bacba37d634ec8f2b2e16d82243c084f12a2b4 (
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
|
if get_option('alsa')
subdir('alsa')
endif
if get_option('audioconvert')
subdir('audioconvert')
endif
if get_option('audiomixer')
subdir('audiomixer')
endif
if get_option('audiotestsrc')
subdir('audiotestsrc')
endif
if get_option('bluez5')
subdir('bluez5')
endif
if get_option('ffmpeg')
subdir('ffmpeg')
endif
if get_option('support')
subdir('support')
endif
if get_option('test')
subdir('test')
endif
if get_option('videoconvert')
subdir('videoconvert')
endif
if get_option('videotestsrc')
subdir('videotestsrc')
endif
if get_option('volume')
subdir('volume')
endif
if get_option('vulkan')
subdir('vulkan')
endif
if get_option('v4l2')
subdir('v4l2')
endif
|