From: Ralf Habacker Date: Mon, 27 Apr 2020 20:12:18 +0000 (+0200) Subject: cmake: remove component 'dev' as we never used that consistently X-Git-Tag: dbus-1.13.16~9^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc9a0af697bd3bff6504669ef732b0eaad2478a7;p=thirdparty%2Fdbus.git 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. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 21c50d41f..0d00d6ede 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 ###############