From d2c9efa9473631b3f1a6df30a4113bc13fc368de Mon Sep 17 00:00:00 2001 From: Domen Vrankar Date: Fri, 11 Aug 2017 20:03:40 +0200 Subject: CPack: additional CPACK_COMPONENTS_ALL documentation --- Modules/CPackComponent.cmake | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Modules/CPackComponent.cmake b/Modules/CPackComponent.cmake index 3a10b99..2374fbd 100644 --- a/Modules/CPackComponent.cmake +++ b/Modules/CPackComponent.cmake @@ -37,6 +37,16 @@ # components defined by the project. The user may set it to only include the # specified components. # +# Instead of specifying all the desired components, it is possible to obtain a +# list of all defined components and then remove the unwanted ones from the +# list. The :command:`get_cmake_property` command can be used to obtain the +# ``COMPONENTS`` property, then the :command:`list(REMOVE_ITEM)` command can be +# used to remove the unwanted ones. For example, to use all defined components +# except ``foo`` and ``bar``:: +# +# get_cmake_property(CPACK_COMPONENTS_ALL COMPONENTS) +# list(REMOVE_ITEM CPACK_COMPONENTS_ALL "foo" "bar") +# # .. variable:: CPACK__COMPONENT_INSTALL # # Enable/Disable component install for CPack generator . -- cgit v0.12