This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/bpf/CMakeLists.txt
2023-04-23 19:16:28 +08:00

7 lines
360 B
CMake

add_library(bpf_obj bpf_obj.cpp)
target_include_directories(bpf_obj PUBLIC ${CMAKE_CURRENT_LIST_DIR})
if (SUPPORT_BPF)
target_link_libraries(bpf_obj PUBLIC bpf)
execute_process(COMMAND make WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/bpf/)
install(FILES ./bpf_tun_rss_steering.o DESTINATION ${CMAKE_INSTALL_PREFIX}/resource/bpf/ COMPONENT PROFILE)
endif()