summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/shield.svg
blob: c7c4841370535c23cdaeaa234e77344c024bb066 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shield"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>
' href='#n4'>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
#!/bin/sh

src_dir="$1"
dst_file="$2"

cat <<EOF > "$dst_file"
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/* This file is auto-generated, do not edit! */
/*
 * Copyright (C) 2018-2019, Google Inc.
 *
 * libcamera.h - libcamera public API
 */
#ifndef __LIBCAMERA_LIBCAMERA_H__
#define __LIBCAMERA_LIBCAMERA_H__

EOF

headers=$(for header in "$src_dir"/*.h "$src_dir"/*.h.in ; do
	header=$(basename "$header")
	header="${header%.in}"
	echo "$header"
done | sort)

for header in $headers ; do
	echo "#include <libcamera/$header>" >> "$dst_file"
done

cat <<EOF >> "$dst_file"

#endif /* __LIBCAMERA_LIBCAMERA_H__ */
EOF