summaryrefslogtreecommitdiff
path: root/src/libcamera/include
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-27 05:29:29 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-04-28 01:54:34 +0300
commitcc15ab43161b805bade5220e2769908d4ceefeff (patch)
treea9ec6feaac0377c14a7541b7ec58fd6fddd5d13d /src/libcamera/include
parent6e1cd1394e5d73dfd4c4334cbf8beee79072de21 (diff)
libcamera: utils: Add a function to retrieve the libcamera source tree
Similarly to libcameraBuildPath(), there's a need to locate resources within the source tree when running libcamera without installing it. Support this use case with a new utils::libcameraSourcePath() function. The implementation uses a symlink from the build root to the source root in order to avoid hardcoding the path to the source root in the libcamera.so binary. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/include')
-rw-r--r--src/libcamera/include/utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcamera/include/utils.h b/src/libcamera/include/utils.h
index 242eeded..3334ff16 100644
--- a/src/libcamera/include/utils.h
+++ b/src/libcamera/include/utils.h
@@ -188,6 +188,7 @@ private:
details::StringSplitter split(const std::string &str, const std::string &delim);
std::string libcameraBuildPath();
+std::string libcameraSourcePath();
} /* namespace utils */