huangcm
2025-02-24 69ed55dec4b2116a19e4cca4393cbc014fce5fb2
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) Facebook, Inc.
# Licensed under the Apache License, Version 2.0 (the "License")
 
include_directories(${CMAKE_SOURCE_DIR}/src/cc)
include_directories(${CMAKE_SOURCE_DIR}/src/cc/api)
 
option(INSTALL_INTROSPECTION "Install BPF introspection tools" ON)
 
add_executable(bps bps.c)
target_link_libraries(bps bpf-static)
 
install (TARGETS bps DESTINATION share/bcc/introspection)