add_library(dmf-node STATIC
    src/control_server.cpp
    src/node_runner.cpp
)

target_include_directories(dmf-node PUBLIC
    include
    ${CMAKE_SOURCE_DIR}/extern/mxl/lib/include
)

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