From c4ed9c310d5a14d3ec1feb00f1f294aadcc985d2 Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Wed, 15 Feb 2023 16:28:21 -0800 Subject: [PATCH] Fix the issue with CMake install for UEFIExtract and UEFIFind Trying to fix the issue with CMake install #2 --- UEFIExtract/CMakeLists.txt | 5 ++++- UEFIFind/CMakeLists.txt | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/UEFIExtract/CMakeLists.txt b/UEFIExtract/CMakeLists.txt index 5e78b08..9077669 100644 --- a/UEFIExtract/CMakeLists.txt +++ b/UEFIExtract/CMakeLists.txt @@ -68,4 +68,7 @@ IF(UNIX) SET_TARGET_PROPERTIES(UEFIExtract PROPERTIES OUTPUT_NAME uefiextract) ENDIF() -INSTALL(TARGETS UEFIExtract) +INSTALL( + TARGETS UEFIExtract + RUNTIME DESTINATION bin +) diff --git a/UEFIFind/CMakeLists.txt b/UEFIFind/CMakeLists.txt index c2ed03b..c79b95a 100644 --- a/UEFIFind/CMakeLists.txt +++ b/UEFIFind/CMakeLists.txt @@ -67,4 +67,7 @@ IF(UNIX) SET_TARGET_PROPERTIES(UEFIFind PROPERTIES OUTPUT_NAME uefifind) ENDIF() -INSTALL(TARGETS UEFIFind) +INSTALL( + TARGETS UEFIFind + RUNTIME DESTINATION bin +)