Cyrille Berger Skott wrote:
> That said, it is a private
> library, but I don't think cmake has a way to prevent installation of .so
> symlinks.
Turns out there is, using cmake's NAMELINK_SKIP magic:
install(TARGETS foo ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
-- rex