I have a bunch of .so libraries and I would like to include them similarly to this question (Ubuntu 18.04).
I have followed the steps from the most upvoted answer from user1824407
I created .conf
file
sudo gedit /etc/ld.so.conf.d/so_libraries.conf
And then I started adding the .so libraries into the file like this:
/home/developer/.conan/.../lib
But it is very clumsy, in the /.conan/ directory there is a lot of subdirectories with the .so libraries. Is there any way to automatically include all the .sos in the .conan directory? Writing just /home/developer/.conan
does not work.
Thank you very much in advance for any help.