
add_executable(accordion-server
    src/main.cpp
    # other server source files go here
    src/TcpServer.cpp
)

target_include_directories(accordion-server PRIVATE
    ${ROOT_DIR}
)

target_link_libraries(accordion-server PRIVATE
    accordion-common
)
