I produce an executable and a dynamic library.
The executable needs to link to the dynamic library.
If i only do exe.linkLibrary(dynlib), the executable is not able to find the library outside the project directory.
So i'm guessing i should do something like exe.root_module.addRPath("something portable...")
But what should it be? something with $ORIGIN?