CMakeLists.txt 147 B

12345678910
  1. add_library(t1 t1.c)
  2. add_library(t2 t2.c)
  3. add_executable(t3 t3.c)
  4. add_executable(t4 t4.c)
  5. add_executable(t5 t5.c)
  6. target_link_libraries(t5 t1)