add_library(dmf-engine STATIC
    src/graph.cpp
    src/flow_manager.cpp
    src/process_manager.cpp
    src/api_server.cpp
)

target_include_directories(dmf-engine PUBLIC
    include
)

target_link_libraries(dmf-engine PUBLIC
    dmf-node
    nlohmann_json::nlohmann_json
    spdlog::spdlog
    fmt::fmt
    websockets
)
