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