Skip to content

Commit

Permalink
postprocess: build: Correct include paths
Browse files Browse the repository at this point in the history
The include paths for the postprocessing so files were wrong, fix it.

Signed-off-by: Naushir Patuck <[email protected]>
  • Loading branch information
naushir committed Nov 5, 2024
1 parent 2b61eca commit 7b4815b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions post_processing_stages/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ postproc_assets += files([
])

core_postproc_lib = shared_module('core-postproc', core_postproc_src,
include_directories : '../..',
include_directories : '../',
dependencies : libcamera_dep,
cpp_args : cpp_arguments,
install : true,
Expand Down Expand Up @@ -58,7 +58,7 @@ if opencv_dep.found()
])

opencv_postproc_lib = shared_module('opencv-postproc', opencv_postproc_src,
include_directories : '../..',
include_directories : '../',
dependencies : [libcamera_dep, opencv_dep],
cpp_args : cpp_arguments,
install : true,
Expand Down Expand Up @@ -89,7 +89,7 @@ if tflite_dep.found()
])

tflite_postproc_lib = shared_module('tflite-postproc', tflite_postproc_src,
include_directories : '../..',
include_directories : '../',
dependencies : [libcamera_dep, tflite_dep],
cpp_args : cpp_arguments,
install : true,
Expand Down

0 comments on commit 7b4815b

Please sign in to comment.