You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
Assuming cmake -S . -B build ..., without installation, find_package(IPCL HINTS ${IPCL}/cmake/ipcl-2.0.0) can find cmake/ipcl-2.0.0/IPCLConfig.cmake. Then IPCLConfig.cmake points to non-existing IPCLConfigVersion.cmake and IPCLTargets.cmake files that are instead generated to build/ipcl/cmake/ipcl-2.0.0/.
Replacing IPCL_ROOT_DIR on this line by CMAKE_CURRENT_BINARY_DIR should fix the issue.
Assuming
cmake -S . -B build ..., without installation,find_package(IPCL HINTS ${IPCL}/cmake/ipcl-2.0.0)can findcmake/ipcl-2.0.0/IPCLConfig.cmake. ThenIPCLConfig.cmakepoints to non-existingIPCLConfigVersion.cmakeandIPCLTargets.cmakefiles that are instead generated tobuild/ipcl/cmake/ipcl-2.0.0/.Replacing
IPCL_ROOT_DIRon this line byCMAKE_CURRENT_BINARY_DIRshould fix the issue.