CMakeLists.txt 524 B

123456789101112131415161718
  1. cmake_minimum_required(VERSION 3.3)
  2. project (Mycorrhiza C)
  3. #add_definitions(--std=c99)
  4. set(CMAKE_EXE_LINKER_FLAGS "-lrt")
  5. find_package(PkgConfig)
  6. add_executable(mycoagent test/mycoagent.c)
  7. add_executable(mycoagent2 test/mycoagent2.c)
  8. add_executable(mycoagent3 test/mycoagent3.c)
  9. add_executable(myconetwork test/myconetwork.c)
  10. add_executable(myconetwork2 test/myconetwork2.c)
  11. add_executable(mycodaemon test/mycodaemon.c)
  12. add_executable(mycoindexer test/mycoindexer.c)
  13. #target_link_libraries(mycoagent ${KIRO_LIBRARIES})