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.
7 lines
276 B
7 lines
276 B
7 months ago
|
file(GLOB C_FILES *.c)
|
||
|
file(GLOB PY_FILES *.py)
|
||
|
file(GLOB TXT_FILES *.txt)
|
||
|
install(PROGRAMS ${PY_FILES} DESTINATION share/bcc/examples/tracing)
|
||
|
install(FILES ${C_FILES} DESTINATION share/bcc/examples/tracing)
|
||
|
install(FILES ${TXT_FILES} DESTINATION share/bcc/examples/tracing)
|