10 lines
371 B
CMake
10 lines
371 B
CMake
find_package(NFNETLINK REQUIRED)
|
|
|
|
add_executable(packetadapter src/inject_pkt.c src/system.c src/packet_adapter.c)
|
|
|
|
target_include_directories(packetadapter PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include/)
|
|
|
|
target_link_libraries(packetadapter common)
|
|
target_link_libraries(packetadapter netfilter_queue)
|
|
|
|
install(TARGETS packetadapter RUNTIME DESTINATION bin COMPONENT Program) |