diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2022-01-18 19:55:44 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2022-01-18 20:52:01 (GMT) |
commit | edb505921617ad2afc9acee2d246092cbaea3854 (patch) | |
tree | 5f88079b6a7a870d415f1707a4fd544cc96326c8 /Help/command/define_property.rst | |
parent | 7d26baff46072055e4cdf56a52634c9e7ff4ee50 (diff) | |
download | CMake-edb505921617ad2afc9acee2d246092cbaea3854.zip CMake-edb505921617ad2afc9acee2d246092cbaea3854.tar.gz CMake-edb505921617ad2afc9acee2d246092cbaea3854.tar.bz2 |
define_property(): Make BRIEF_DOCS and FULL_DOCS optional
Issue: #20698
Diffstat (limited to 'Help/command/define_property.rst')
-rw-r--r-- | Help/command/define_property.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/command/define_property.rst b/Help/command/define_property.rst index 8f7439b..9474513 100644 --- a/Help/command/define_property.rst +++ b/Help/command/define_property.rst @@ -8,8 +8,8 @@ Define and document custom properties. define_property(<GLOBAL | DIRECTORY | TARGET | SOURCE | TEST | VARIABLE | CACHED_VARIABLE> PROPERTY <name> [INHERITED] - BRIEF_DOCS <brief-doc> [docs...] - FULL_DOCS <full-doc> [docs...]) + [BRIEF_DOCS <brief-doc> [docs...]] + [FULL_DOCS <full-doc> [docs...]]) Defines one property in a scope for use with the :command:`set_property` and :command:`get_property` commands. This is primarily useful to associate |