CMakeLists.txt 428 B

12345678910111213141516
  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(mycodaemon test/mycodaemon.c)
  10. add_executable(mycoindexer test/mycoindexer.c)
  11. #target_link_libraries(mycoagent ${KIRO_LIBRARIES})