Closed elykwilliams closed 5 months ago
Thanks! So far we had not given the pkgconfig support much coverage. If we were eventually to arrive at installed .pc files that actually work the way Linux distributions need it to, and are identical between autotools and CMake, that would be another major step forward.
We may augment our CI eventually to check into the generated .pc contents.
Fix pkgconf install path in symbolic link
Closes issue #187.
Proposed changes: The
CMAKE_INSTALL_PATH
was being set an configure time and not using the value present at install time. This change will allow all supported cmake versions to specify the install prefix when installing viacmake --install . --prefix=/path/to/install
.Note that this change will cause cmake to issue a fatal error and abort install if the symbolic link is not created, instead of failing passively as before.