cmake_minimum_required(VERSION 3.3) project (Mycorrhiza C) #add_definitions(--std=c99) set(CMAKE_EXE_LINKER_FLAGS "-lrt") find_package(PkgConfig) add_executable(mycoagent test/mycoagent.c) add_executable(mycoagent2 test/mycoagent2.c) add_executable(mycoagent3 test/mycoagent3.c) add_executable(myconetwork test/myconetwork.c) add_executable(myconetwork2 test/myconetwork2.c) add_executable(mycodaemon test/mycodaemon.c) add_executable(mycodaemon_nodaemon test/mycodaemon_nodaemon.c) add_executable(mycoindexer test/mycoindexer.c) add_executable(mycosend benchmarks/myco/send.c) add_executable(mycoreceive benchmarks/myco/receive.c) #target_link_libraries(mycoagent ${KIRO_LIBRARIES})