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 )