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