summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/user-check.svg
blob: 42f91b29d82db2565e5616089a049972a6731156 (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-user-check"><path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline></svg>
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