From dc9a0af697bd3bff6504669ef732b0eaad2478a7 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Mon, 27 Apr 2020 22:12:18 +0200 Subject: [PATCH] cmake: remove component 'dev' as we never used that consistently Marking targets with a component would only be useful if we marked every target with a component in a consistent way, but because we don't do that, it's pointless to have it in just a few places. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21c50d41..0d00d6ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -535,11 +535,11 @@ configure_file(cmake/DBus1ConfigVersion.cmake.in "${CMAKE_BINARY_DIR}/DBus1Confi install(FILES "${CMAKE_BINARY_DIR}/DBus1Config.cmake" "${CMAKE_BINARY_DIR}/DBus1ConfigVersion.cmake" - DESTINATION "${INSTALL_CMAKE_DIR}" COMPONENT dev + DESTINATION "${INSTALL_CMAKE_DIR}" ) if(WIN32) - install(EXPORT DBus1Targets DESTINATION "${INSTALL_CMAKE_DIR}" COMPONENT dev) + install(EXPORT DBus1Targets DESTINATION "${INSTALL_CMAKE_DIR}") endif() ########### subdirs ###############