CMake: add static library to shared lib
Posted
by redvarib
on Stack Overflow
See other posts from Stack Overflow
or by redvarib
Published on 2010-03-30T10:39:48Z
Indexed on
2010/03/30
10:43 UTC
Read the original article
Hit count: 215
cmake
I would like to create shared library with cmake, but also I need to link it to third party static libraries.
For example if it should include my own file1.o, file2.o, then statically linked libfoo.la and then be written down to disk as .so file which dynamically linked to libbar.so
Is it even possible?
© Stack Overflow or respective owner