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.
|
file(GLOB PY_FILES *.py)
|
|
foreach(FIL ${PY_FILES})
|
|
get_filename_component(FIL_WE ${FIL} NAME_WE)
|
|
install(PROGRAMS ${FIL} DESTINATION share/bcc/tools/old RENAME ${FIL_WE})
|
|
endforeach()
|