ENH: Generation now sets up proper linking of shared libraries to each other.

This commit is contained in:
Brad King 2001-04-11 16:34:53 -04:00
parent 7b2b93560e
commit 69308873f9
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ void cmUnixMakefileGenerator::OutputTargets(std::ostream& fout)
fout << "\t$(CXX) ${CXX_FLAGS} ${CMAKE_SHLIB_BUILD_FLAGS} -o \\\n";
fout << "\t lib" << l->first << "$(SHLIB_SUFFIX) \\\n";
fout << "\t ${KIT_OBJ} ${" << l->first <<
"_SRC_OBJS} ${SHLIB_LD_LIBS}\n\n";
"_SRC_OBJS} ${CMAKE_LINK_LIBS}\n\n";
}
else
{