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/cmake/FindLIBBPF.cmake

8 lines
149 B
CMake
Raw Normal View History

include(FindPkgConfig)
pkg_check_modules(LIBBPF libbpf)
if(LIBBPF_FOUND)
set(SUPPORT_BPF true)
else()
set(SUPPORT_BPF false)
endif()