On Wed 07 Jan 2004, Johan Bjoerk wrote: > I havn't done much reading on CMake yet, but I thought > TARGET_LINK_LIBRARIES would create a shared lib? TARGET_LINK_LIBRARIES does not create anything. It just specifies an edge in the dependency graph. From this, CMake will determine the best link line. ADD_LIBRARY is used to create a library, shared or otherwise.