summaryrefslogtreecommitdiffstats
path: root/Help/variable
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2022-02-24 23:09:53 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2022-03-29 17:58:27 (GMT)
commitc798744f8193e97f00f1b6e47dc5bc6fdc34b222 (patch)
tree27b2dc2cbd04d45026319bbe006acd72bb0f3dff /Help/variable
parentfdbef2a2be1f070e0f0809536639ff20d80584e6 (diff)
downloadCMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.zip
CMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.tar.gz
CMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.tar.bz2
FILE_SET: Add VERIFY_HEADER_SETS target property
Fixes: #23338
Diffstat (limited to 'Help/variable')
-rw-r--r--Help/variable/CMAKE_VERIFY_HEADER_SETS.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_VERIFY_HEADER_SETS.rst b/Help/variable/CMAKE_VERIFY_HEADER_SETS.rst
new file mode 100644
index 0000000..8bd618a
--- /dev/null
+++ b/Help/variable/CMAKE_VERIFY_HEADER_SETS.rst
@@ -0,0 +1,17 @@
+CMAKE_VERIFY_HEADER_SETS
+------------------------
+
+.. versionadded:: 3.24
+
+This variable is used to initialize the :prop_tgt:`VERIFY_HEADER_SETS`
+property of targets when they are created. Setting it to true
+enables header set verification.
+
+Projects should not set this variable, it is intended as a developer
+control to be set on the :manual:`cmake(1)` command line or other
+equivalent methods. The developer must have the ability to enable or
+disable header set verification according to the capabilities of their own
+machine and compiler.
+
+By default, this variable is not set, which will result in header set
+verification being disabled.