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
However when I placed this in a project verbatim, I received a CMake error message:
Could not find a configuration file for package "liblas" that is compatible with requested version "".
The following configuration files were considered but not accepted:
[..........]/share/liblas/liblas-config.cmake, version: 1.8.1 (package = libLAS, NOT liblas)
Proposed solution
The find_package line is case sensitive, so instead of: find_package(liblas CONFIG REQUIRED)
The correct cmake target that should be suggested is: find_package(libLAS CONFIG REQUIRED)
Describe alternatives you've considered
Alternatively users could figure this out on their own
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When installing the libLAS package, the following CMake targets are suggested:
However when I placed this in a project verbatim, I received a CMake error message:
Proposed solution
The find_package line is case sensitive, so instead of:
find_package(liblas CONFIG REQUIRED)
The correct cmake target that should be suggested is:
find_package(libLAS CONFIG REQUIRED)
Describe alternatives you've considered
Alternatively users could figure this out on their own
The text was updated successfully, but these errors were encountered: