diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2018-12-14 11:38:14 +0100 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2018-12-19 10:30:44 +0100 |
commit | 7dc517ca6beefa4c72224c302eba6699fa878c30 (patch) | |
tree | d038cdb49f2c389b18dd2af8d2cc8f7795d0d790 | |
parent | c81bc473fd24de5a46bb995510378433d23d3098 (diff) |
build: Define library private include path
Separate declaration of library internal inclusion path.
This will be used by tests, developed outside of library code, that need to
include parts of the library internal APIs and can re-use the here defined
variable.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
-rw-r--r-- | src/libcamera/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 0c44b5ab..f632eb5d 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -8,9 +8,11 @@ libcamera_headers = files([ 'include/utils.h', ]) +libcamera_internal_includes = include_directories('include') + includes = [ libcamera_includes, - include_directories('include'), + libcamera_internal_includes, ] libcamera = shared_library('camera', |