aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/BuildMacros.cmake2
-rw-r--r--cmake/Modules/Packager.cmake3
2 files changed, 3 insertions, 2 deletions
diff --git a/cmake/Modules/BuildMacros.cmake b/cmake/Modules/BuildMacros.cmake
index ed767dbcc..c4c6c9af1 100644
--- a/cmake/Modules/BuildMacros.cmake
+++ b/cmake/Modules/BuildMacros.cmake
@@ -153,10 +153,10 @@ macro(build_library lib)
install(
TARGETS ${library}
+ COMPONENT ${ARG_COMPONENT}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${INSTALL_LIB_PATH}
- COMPONENT ${ARG_COMPONENT}
)
if(ARG_DEPENDS)
diff --git a/cmake/Modules/Packager.cmake b/cmake/Modules/Packager.cmake
index 5e77d7de0..1edfd671d 100644
--- a/cmake/Modules/Packager.cmake
+++ b/cmake/Modules/Packager.cmake
@@ -106,7 +106,8 @@ macro(make_packages)
get_next_version(${tag} next_version)
get_cmake_property(components COMPONENTS)
- get_cmake_property(CPACK_COMPONENTS_ALL COMPONENTS)
+ list(REMOVE_ITEM components "Unspecified")
+ set(CPACK_COMPONENTS_ALL ${components})
if(OS_ID MATCHES "debian" OR OS_ID_LIKE MATCHES "debian")
set(CPACK_GENERATOR "DEB")