File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -44,5 +44,7 @@ set(CMAKE_CXX_FLAGS "-std=c++11 -Wall")
4444endif ()
4545
4646add_subdirectory (examples)
47+ add_subdirectory (man)
4748add_subdirectory (src)
4849add_subdirectory (tests)
50+ add_subdirectory (tools)
Original file line number Diff line number Diff line change 1+ add_subdirectory (man8)
Original file line number Diff line number Diff line change 1+ set (FILES biolatency.8 biosnoop.8 funccount.8 funclatency.8 hardirqs.8
2+ killsnoop.8 opensnoop.8 pidpersec.8 softirqs.8 syncsnoop.8 tcpaccept.8
3+ tcpconnect.8 vfscount.8 vfsstat.8)
4+ install (FILES ${FILES} DESTINATION share/bcc/man/man8)
Original file line number Diff line number Diff line change 1+ set (PROGRAMS biolatency biosnoop funccount funclatency hardirqs killsnoop
2+ opensnoop pidpersec softirqs syncsnoop tcpaccept tcpconnect vfscount vfsstat)
3+ set (C_FILES pidpersec.c vfscount.c vfsstat.c)
4+ set (EXAMPLE_FILES biolatency_example.txt funclatency_example.txt
5+ killsnoop_example.txt pidpersec_example.txt syncsnoop_example.txt
6+ tcpconnect_example.txt vfsstat_example.txt biosnoop_example.txt
7+ funccount_example.txt hardirqs_example.txt opensnoop_example.txt
8+ softirqs_example.txt tcpaccept_example.txt vfscount_example.txt)
9+ install (PROGRAMS ${PROGRAMS} DESTINATION share/bcc/tools)
10+ install (FILES ${C_FILES} DESTINATION share/bcc/tools)
11+ install (FILES ${EXAMPLE_FILES} DESTINATION share/bcc/doc /tools)
You can’t perform that action at this time.
0 commit comments