summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 6a8bb071ed3fd6617fe7b9ec708727ca1ecafd79 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
option('docs',
       description: 'Build documentation',
       type: 'boolean',
       value: false)
option('examples',
       description: 'Build examples',
       type: 'boolean',
       value: true)
option('man',
       description: 'Build manpages',
       type: 'boolean',
       value: true)
option('tests',
       description: 'Build tests',
       type: 'boolean',
       value: true)
option('installed_tests',
       description: 'Install manual and automated test executables',
       type: 'boolean',
       value: false)
option('gstreamer',
       description: 'Build GStreamer plugins',
       type: 'boolean',
       value: true)
option('systemd',
       description: 'Enable systemd integration',
       type: 'boolean',
       value: true)
option('systemd-system-service',
       description: 'Install systemd system service file',
       type: 'boolean',
       value: false)
option('systemd-user-service',
       description: 'Install systemd user service file',
       type: 'boolean',
       value: true)
option('pipewire-alsa',
       description: 'Enable pipewire-alsa integration',
       type: 'boolean',
       value: true)
option('pipewire-jack',
       description: 'Enable pipewire-jack integration',
       type: 'boolean',
       value: true)
option('libjack-path',
       description: 'Where to install the libjack.so library',
       type: 'string')
option('pipewire-pulseaudio',
       description: 'Enable pipewire-pulseaudio integration',
       type: 'boolean',
       value: true)
option('libpulse-path',
       description: 'Where to install the libpulse.so library',
       type: 'string')
option('spa-plugins',
       description: 'Enable spa plugins integration',
       type: 'boolean',
       value: true)
option('alsa',
       description: 'Enable alsa spa plugin integration',
       type: 'boolean',
       value: true)
option('audiomixer',
       description: 'Enable audiomixer spa plugin integration',
       type: 'boolean',
       value: true)
option('audioconvert',
       description: 'Enable audioconvert spa plugin integration',
       type: 'boolean',
       value: true)
option('bluez5',
       description: 'Enable bluez5 spa plugin integration',
       type: 'boolean',
       value: true)
option('bluez5-backend-native',
       description: 'Enable native HSP backend in bluez5 spa plugin',
       type: 'boolean',
       value: true)
option('bluez5-backend-ofono',
       description: 'Enable oFono HFP backend in bluez5 spa plugin',
       type: 'boolean',
       value: true)
option('bluez5-backend-hsphfpd',
       description: 'Enable hsphfpd backend in bluez5 spa plugin',
       type: 'boolean',
       value: false)
option('control',
       description: 'Enable control spa plugin integration',
       type: 'boolean',
       value: true)
option('audiotestsrc',
       description: 'Enable audiotestsrc spa plugin integration',
       type: 'boolean',
       value: false)
option('ffmpeg',
       description: 'Enable ffmpeg spa plugin integration',
       type: 'boolean',
       value: false)
option('jack',
       description: 'Enable jack spa plugin integration',
       type: 'boolean',
       value: true)
option('support',
       description: 'Enable support spa plugin integration',
       type: 'boolean',
       value: true)
option('evl',
       description: 'Enable EVL support spa plugin integration',
       type: 'boolean',
       value: false)
option('test',
       description: 'Enable test spa plugin integration',
       type: 'boolean',
       value: false)
option('v4l2',
       description: 'Enable v4l2 spa plugin integration',
       type: 'boolean',
       value: true)
option('libcamera',
       description: 'Enable libcamera spa plugin integration',
       type: 'boolean',
       value: false)
option('videoconvert',
       description: 'Enable videoconvert spa plugin integration',
       type: 'boolean',
       value: true)
option('videotestsrc',
       description: 'Enable videotestsrc spa plugin integration',
       type: 'boolean',
       value: false)
option('volume',
       description: 'Enable volume spa plugin integration',
       type: 'boolean',
       value: false)
option('vulkan',
       description: 'Enable vulkan spa plugin integration',
       type: 'boolean',
       value: true)
option('pw-cat',
       description: 'Build pw-cat/pw-play/pw-record',
       type: 'boolean',
       value: true)
option('udevrulesdir',
       type : 'string',
       description : 'Directory for udev rules (defaults to /lib/udev/rules.d)')