From fbe679d3c25a69ab6b238ebe896ba83e3c8ac6e4 Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Tue, 18 Feb 2020 13:08:30 +0100 Subject: [HICN-527] Do not create Unspecified DEB/RPM package anymore. Change-Id: Id79b3885ca02b24a4c480ec10a0b2a1330ff8604 Signed-off-by: Mauro Sardara --- cmake/Modules/BuildMacros.cmake | 2 +- cmake/Modules/Packager.cmake | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'cmake') 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") -- cgit 1.2.3-korg