blob: 605fbc9f1d5d018404bb27dd9dacb9f8b71f182e (
plain)
1
2
3
4
5
6
|
# 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 )
|