CMakeLists.txt 689 B

123456789101112131415161718192021
  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(mycodaemon_nodaemon test/mycodaemon_nodaemon.c)
  13. add_executable(mycoindexer test/mycoindexer.c)
  14. add_executable(mycosend benchmarks/myco/send.c)
  15. add_executable(mycoreceive benchmarks/myco/receive.c)
  16. #target_link_libraries(mycoagent ${KIRO_LIBRARIES})