blob: b6160d346cf75d40c097c01f88a09ca29d2c4d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# SPDX-License-Identifier: CC0-1.0
# Location of pipeline specific configuration files
pipeline_data_dir = libcamera_datadir / 'pipeline'
# Allow multi-level directory structuring for the pipeline handlers if needed.
subdirs = []
foreach pipeline : pipelines
pipeline = pipeline.split('/')[0]
if pipeline in subdirs
continue
endif
subdir(pipeline)
subdirs += pipeline
endforeach
|