I would like to create a shared library with cmake, but I also need to link it to third-party static libraries.
For example, if it should contain my file file1.o, file2.o, then libfoo.la is statically linked and then written to disk as a .so file that is dynamically linked to libbar.so
Is it possible?
source share