diff options
Diffstat (limited to 'tools/opt-viewer/CMakeLists.txt')
-rw-r--r-- | tools/opt-viewer/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/opt-viewer/CMakeLists.txt b/tools/opt-viewer/CMakeLists.txt new file mode 100644 index 0000000000000..19b6069330820 --- /dev/null +++ b/tools/opt-viewer/CMakeLists.txt @@ -0,0 +1,13 @@ +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) |