CMakeLists.txt 226 B

123456
  1. # Here, Five already has it's immediate dependency, Two satisfied. We must
  2. # make sure Two gets output anyway, because Eight indirectly depends on it.
  3. link_libraries( Five Two Eight Five )
  4. add_executable( exec3 ExecMain.c )