I have some static libraries and need to link them into my CMAKE project's shared libraries. Is there a platform-independent way to specify this? What I want can be expressed by the following:

g++ -shared -o libmylib.so my_obj_files.o -Wl,-whole-archive -lmy_static_lib -Wl,-no-whole-archive

On SGI:
cc -shared -o libmylib.so my_obj_files.o -Wl,-all -lmy_static_lib -Wl,-notall

And so on

_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to