This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
ffd/ffd/CMakeLists.txt

14 lines
261 B
CMake

include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${FFD_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})
add_executable(ffd
announce.c
ffd.c
neigh.c
netif.c
send.c
tlv.c
util.c
)
target_link_libraries(ffd rt)
install(TARGETS ffd RUNTIME DESTINATION sbin)