blob: 111c25b00b43d8ffbd5528355155d968493bfb1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2021, Google Inc.
*
* source_paths.h - Identify libcamera source and build paths
*/
#ifndef __LIBCAMERA_INTERNAL_SOURCE_PATHS_H__
#define __LIBCAMERA_INTERNAL_SOURCE_PATHS_H__
#include <string>
namespace libcamera::utils {
std::string libcameraBuildPath();
std::string libcameraSourcePath();
} /* namespace libcamera::utils */
#endif /* __LIBCAMERA_INTERNAL_SOURCE_PATHS_H__ */
|