0e6b39e52f
- Make sure the original link line is untouched - Avoid duplicating the link line when supporting version < 1.4 - Make sure the cyclic dependencies and such are output correctly in complicated cases. - Avoid outputing dependencies that are already satisfied on the original link line when possible.
7 lines
226 B
CMake
7 lines
226 B
CMake
# Here, Five already has it's immediate dependency, Two satisfied. We must
|
|
# make sure Two gets output anyway, because Eight indirectly depends on it.
|
|
LINK_LIBRARIES( Five Two Eight Five )
|
|
|
|
ADD_EXECUTABLE( exec3 ExecMain.c )
|
|
|