CMakeLists.txt 308 B

1234567
  1. # This executable directly depends on NoDepB, NoDepC, SixA and SixB. However,
  2. # since NoDepB and NoDepC do not have explicit dependency information,
  3. # and they depend on NoDepA, we have to manually specify that dependency.
  4. link_libraries( NoDepB NoDepC NoDepA SixB SixA )
  5. add_executable( exec ExecMain.c )