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.
21 lines
461 B
21 lines
461 B
7 months ago
|
set (files
|
||
|
"opt-diff.py"
|
||
|
"opt-stats.py"
|
||
|
"opt-viewer.py"
|
||
|
"optpmap.py"
|
||
|
"optrecord.py"
|
||
|
"style.css")
|
||
|
|
||
|
foreach (file ${files})
|
||
|
install(PROGRAMS ${file}
|
||
|
DESTINATION share/opt-viewer
|
||
|
COMPONENT opt-viewer)
|
||
|
endforeach (file)
|
||
|
|
||
|
add_custom_target(opt-viewer DEPENDS ${files})
|
||
|
if(NOT LLVM_ENABLE_IDE)
|
||
|
add_llvm_install_targets("install-opt-viewer"
|
||
|
DEPENDS opt-viewer
|
||
|
COMPONENT opt-viewer)
|
||
|
endif()
|