The libpdalcpp.so lib does not have a versioned instance installed. For Entwine, a dependent project that links PDAL as a dependency, this means that cmake cannot find the PDAL library:
Apparently when cmake cannot find a lib (which is the case here), it uses the library name with -l, rather than the full path, hoping that it's sitting someplace like /usr/lib, which explains the lack of Conda path in the link line for PDAL.
The PDAL libs installed on Ubuntu look like this:
The
libpdalcpp.so
lib does not have a versioned instance installed. For Entwine, a dependent project that links PDAL as a dependency, this means that cmake cannot find the PDAL library:Apparently when cmake cannot find a lib (which is the case here), it uses the library name with
-l
, rather than the full path, hoping that it's sitting someplace like/usr/lib
, which explains the lack of Conda path in the link line for PDAL.