-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathmeson.build
More file actions
55 lines (53 loc) · 1.43 KB
/
meson.build
File metadata and controls
55 lines (53 loc) · 1.43 KB
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
headers_components = files(
'components/Ambisonic2SRenderer.h',
'components/AudioCapture.h',
'components/Capture.h',
'components/ChromaKey.h',
'components/ColorSpace.h',
'components/Component.h',
'components/ComponentCaps.h',
'components/CursorCapture.h',
'components/DisplayCapture.h',
'components/FFMPEGAudioConverter.h',
'components/FFMPEGAudioDecoder.h',
'components/FFMPEGAudioEncoder.h',
'components/FFMPEGComponents.h',
'components/FFMPEGFileDemuxer.h',
'components/FFMPEGFileMuxer.h',
'components/FFMPEGVideoDecoder.h',
'components/MediaSource.h',
'components/PreAnalysis.h',
'components/PreProcessing.h',
'components/VideoCapture.h',
'components/VideoConverter.h',
'components/VideoDecoderUVD.h',
'components/VideoEncoderHEVC.h',
'components/VideoEncoderVCE.h',
'components/VideoStitch.h',
'components/ZCamLiveStream.h',
)
headers_core = files(
'core/AudioBuffer.h',
'core/Buffer.h',
'core/Compute.h',
'core/ComputeFactory.h',
'core/Context.h',
'core/CurrentTime.h',
'core/Data.h',
'core/Debug.h',
'core/Dump.h',
'core/Factory.h',
'core/Interface.h',
'core/Plane.h',
'core/Platform.h',
'core/PropertyStorage.h',
'core/PropertyStorageEx.h',
'core/Result.h',
'core/Surface.h',
'core/Trace.h',
'core/Variant.h',
'core/Version.h',
'core/VulkanAMF.h',
)
install_headers(headers_components, subdir: 'AMF/components')
install_headers(headers_core, subdir: 'AMF/core')