Skip to content

Commit

Permalink
fix: openvino include dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsaloka committed Oct 31, 2024
1 parent 94e1ef3 commit 6626f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ message(STATUS "OpenCV library status:")
message(STATUS "version:${OpenCV_VERSION}")
message(STATUS "libraries:${OpenCV_LIBS}")
message(STATUS "OpenCV include path:${OpenCV_INCLUDE_DIRS}")
message(STATUS "OpenVINO include path env:$ENV{OpenVINO_INCLUDE_DIRS}")
message(STATUS "OpenVINO include path env:${OpenVINO_DIR}/../include")

add_library(${PROJECT_NAME} SHARED
"src/${PROJECT_NAME}/config/grpc/config.cpp"
Expand Down Expand Up @@ -68,7 +68,7 @@ target_include_directories(${PROJECT_NAME} PUBLIC
target_include_directories(${PROJECT_NAME}_exported PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
$ENV{OpenVINO_INCLUDE_DIRS})
${OpenVINO_DIR}/../include)

ament_target_dependencies(${PROJECT_NAME}
jitsuyo
Expand Down

0 comments on commit 6626f51

Please sign in to comment.