From cfdb8976562264d02c4abfec9493983c13e89dfa Mon Sep 17 00:00:00 2001 From: Alexander Lopez Date: Sun, 4 Aug 2024 20:10:05 -0700 Subject: [PATCH] install file set in both debug and release --- cmake/Installing.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/Installing.cmake b/cmake/Installing.cmake index 5244141..99033f1 100644 --- a/cmake/Installing.cmake +++ b/cmake/Installing.cmake @@ -15,6 +15,7 @@ if (CMAKE_BUILD_TYPE STREQUAL "Debug") ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/debug # lib/debug # except for public headers, as we want them to be inside a library folder PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME} # include/str_view + FILE_SET public_headers INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} # include ) else()