CMakeLists.txt 317 B

123456789101112
  1. # In some projects, people don't use TARGET_LINK_LIBRARIES, but just
  2. # use an all-encompassing LINK_LIBRARIES. And sometimes they don't
  3. # specify them in the correct order.
  4. link_libraries( Two )
  5. link_libraries( Five )
  6. add_library( SixA SixASrc.c )
  7. add_library( SixB SixBSrc.c )
  8. target_link_libraries( SixB Four )