summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-01-30 16:30:58 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-01-30 16:31:10 (GMT)
commit03206842ffe9d4af574c740ca8445dfc5fc6e0eb (patch)
tree93147d3ca2bf7ff1db8547a1ea5af2cb4e543307 /Help
parentc64c20e7e0b5cf23b7bde64132a95ebbe7abca46 (diff)
parent6c3311d53beed5bd229efeaaa4fefc330de3ddea (diff)
downloadCMake-03206842ffe9d4af574c740ca8445dfc5fc6e0eb.zip
CMake-03206842ffe9d4af574c740ca8445dfc5fc6e0eb.tar.gz
CMake-03206842ffe9d4af574c740ca8445dfc5fc6e0eb.tar.bz2
Merge topic 'test-define-prop'
6c3311d53b Help: Document property redefinition semantics 7aacae4e0e Tests: Add unit tests for property redefinition Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9136
Diffstat (limited to 'Help')
-rw-r--r--Help/command/define_property.rst36
1 files changed, 36 insertions, 0 deletions
diff --git a/Help/command/define_property.rst b/Help/command/define_property.rst
index 5278e30..06f2823 100644
--- a/Help/command/define_property.rst
+++ b/Help/command/define_property.rst
@@ -74,6 +74,42 @@ project via corresponding options to the :command:`get_property` command.
underscore. It is recommended that the property name have a prefix specific
to the project.
+Property Redefinition
+^^^^^^^^^^^^^^^^^^^^^
+
+Once a property is defined for a particular type of scope, it cannot be
+redefined. Attempts to redefine an existing property by calling
+:command:`define_property` with the same scope type and property name
+will be silently ignored. Defining the same property name for two different
+kinds of scope is valid.
+
+:command:`get_property` can be used to determine whether a property is
+already defined for a particular kind of scope, and if so, to examine its
+definition. For example:
+
+.. code-block:: cmake
+
+ # Initial definition
+ define_property(TARGET PROPERTY MY_NEW_PROP
+ BRIEF_DOCS "My new custom property"
+ )
+
+ # Later examination
+ get_property(my_new_prop_exists
+ TARGET NONE
+ PROPERTY MY_NEW_PROP
+ DEFINED
+ )
+
+ if(my_new_prop_exists)
+ get_property(my_new_prop_docs
+ TARGET NONE
+ PROPERTY MY_NEW_PROP
+ BRIEF_DOCS
+ )
+ # ${my_new_prop_docs} is now set to "My new custom property"
+ endif()
+
See Also
^^^^^^^^