I am trying to use a library in my project and I managed to compile it using cmake
and then running make
. Now I need to install it in the current target so that I can use the library and the development files related to it.
I did the following but it fails:
[SailfishOS-3.4.0.24-i486] build $ make install
This fails because it copies the files to /usr/local/bin
but apparently with the current version of the SDK this is mounted as a read-only filesystem. I think this was possible before. What is the correct way to do this?