ViSP bottle needs to be updated #5787
Replies: 3 comments 3 replies
-
Thanks for the report. I've opened Homebrew/homebrew-core#200220 to rebuild the bottle. |
Beta Was this translation helpful? Give feedback.
-
OpenCV was updated two days ago, now it is 4.10.0_15, see update 4.10.0_15 bottle. Is it possible to update the visp bottle accordingly? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Can you share more about what the cmake file looks like for which you are seeing the issues? Tentatively, I have tried something like the following and it seems to be working fine (maybe I'm not testing a part that relies on OpenCV): cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project(visp-check LANGUAGES CXX)
find_package(VISP REQUIRED visp_core)
include_directories(${VISP_INCLUDE_DIRS})
add_executable(visp-check test.cpp)
target_link_libraries(visp-check ${VISP_LIBRARIES}) |
Beta Was this translation helpful? Give feedback.
-
Output of
brew config
Output of
brew doctor
Description of issue
ViSP bottle is no more compatible with a recent update of OpenCV bottle (OpenCV is a dependency of ViSP).
See lagadic/visp#1515
will bring OpenCV installation in
/opt/homebrew/Cellar/opencv/4.10.0_14/
folder while ViSP installed withwill contain in
/opt/homebrew/Cellar/visp/3.6.0_6/lib/cmake/visp/VISPConfig.cmake
a reference to/opt/homebrew/Cellar/opencv/4.10.0/include/opencv4
instead of/opt/homebrew/Cellar/opencv/4.10.0_14/include/opencv4
Can some one (@cho-m, @issyl0, @chenrui333, @branchvincent, @fxcoudert ...) update visp bottle ?
Beta Was this translation helpful? Give feedback.
All reactions