On MacOS, I get linking problems at runtime for a CMake project that depends on dynamically linked resources – but only after installing the project! The p
This fixed the issue for me:
set(CMAKE_MACOSX_RPATH OFF) add_library(your-lib SHARED)