You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
13 lines
389 B
# 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)
|