From 8f49e7d28c76b010ddc6a6cdfd4b2326e9dd91ea Mon Sep 17 00:00:00 2001 From: Sam James <11667869+thesamesam@users.noreply.github.com> Date: Sat, 14 Aug 2021 17:38:02 +0100 Subject: [PATCH] Don't limit install on Release/Debug/RelWithDebInfo CONFIGURATIONS (#396) Co-authored-by: Andreas Sturmlechner --- src/cryfs-cli/CMakeLists.txt | 1 - src/cryfs-unmount/CMakeLists.txt | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cryfs-cli/CMakeLists.txt b/src/cryfs-cli/CMakeLists.txt index 90edb227..e8c03916 100644 --- a/src/cryfs-cli/CMakeLists.txt +++ b/src/cryfs-cli/CMakeLists.txt @@ -27,6 +27,5 @@ target_enable_style_warnings(${PROJECT_NAME}_bin) target_activate_cpp14(${PROJECT_NAME}_bin) install(TARGETS ${PROJECT_NAME}_bin - CONFIGURATIONS Debug Release RelWithDebInfo DESTINATION ${CMAKE_INSTALL_BINDIR} ) diff --git a/src/cryfs-unmount/CMakeLists.txt b/src/cryfs-unmount/CMakeLists.txt index 7afea7b5..721291c1 100644 --- a/src/cryfs-unmount/CMakeLists.txt +++ b/src/cryfs-unmount/CMakeLists.txt @@ -20,6 +20,5 @@ target_enable_style_warnings(${PROJECT_NAME}_bin) target_activate_cpp14(${PROJECT_NAME}_bin) install(TARGETS ${PROJECT_NAME}_bin - CONFIGURATIONS Debug Release RelWithDebInfo - DESTINATION ${CMAKE_INSTALL_BINDIR} + DESTINATION ${CMAKE_INSTALL_BINDIR} )