]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
cmake: remove component 'dev' as we never used that consistently
authorRalf Habacker <ralf.habacker@freenet.de>
Mon, 27 Apr 2020 20:12:18 +0000 (22:12 +0200)
committerRalf Habacker <ralf.habacker@freenet.de>
Wed, 29 Apr 2020 15:23:23 +0000 (15:23 +0000)
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

index 21c50d41f45da6c72d41d3ecd6ceda30ae2ca06e..0d00d6ede7f560d674e426d40ec2c4219f82c479 100644 (file)
@@ -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 ###############