CMakeLists.txt 162 B

12345678910
  1. project(sample)
  2. file(GLOB SRCS "*.c")
  3. include_directories(${CMAKE_SOURCE_DIR}/src)
  4. add_executable(sample ${SRCS})
  5. target_link_libraries(sample peer pthread)