From 39cce6b42b33b0a0dc1673fc884366e0a2bfcdc2 Mon Sep 17 00:00:00 2001 From: Nick Curtis <6463881+skyreflectedinmirrors@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:47:44 -0500 Subject: [PATCH] Install omniperf_soc and omniperf_profile, such that a 'make install'd build will function (#240) Signed-off-by: Nicholas Curtis Co-authored-by: Nicholas Curtis --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ddbb59c4d..f4833ca3fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -311,6 +311,16 @@ install( src/utils/rooflines/roofline-sle15sp3-mi200-rocm5 src/utils/rooflines/roofline-ubuntu20_04-mi200-rocm5 DESTINATION ${CMAKE_INSTALL_BINDIR}/utils/rooflines) +# src/omniperf_soc +install( + DIRECTORY src/omniperf_soc + TYPE BIN + PATTERN "__pycache__" EXCLUDE) +# src/omniperf_profile +install( + DIRECTORY src/omniperf_profile + TYPE BIN + PATTERN "__pycache__" EXCLUDE) # samples install(DIRECTORY sample TYPE DATA)