summaryrefslogtreecommitdiffstats
path: root/Help/dev/experimental.rst
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-05-31 16:10:43 (GMT)
committerBrad King <brad.king@kitware.com>2023-06-01 18:43:26 (GMT)
commit0183e1bca379199949210217869c3a214702eba1 (patch)
tree29f8da1c03adf0fcf3470abd427b1ed3e893a4c2 /Help/dev/experimental.rst
parent9a63aa8d57394fbddf913ce35c2d32bbf523f0e6 (diff)
downloadCMake-0183e1bca379199949210217869c3a214702eba1.zip
CMake-0183e1bca379199949210217869c3a214702eba1.tar.gz
CMake-0183e1bca379199949210217869c3a214702eba1.tar.bz2
cxxmodules: remove `CMAKE_EXPERIMENTAL_CXX_MODULE_DYNDEP` variable
It is now subsumed by the UUID setting completely.
Diffstat (limited to 'Help/dev/experimental.rst')
-rw-r--r--Help/dev/experimental.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Help/dev/experimental.rst b/Help/dev/experimental.rst
index beb4411..eac86ab 100644
--- a/Help/dev/experimental.rst
+++ b/Help/dev/experimental.rst
@@ -63,12 +63,6 @@ dependencies, set the following variables:
``CMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API``
Set this to the UUID documented above.
-``CMAKE_EXPERIMENTAL_CXX_MODULE_DYNDEP``
- Set this to ``1`` in order to activate this undocumented experimental
- infrastructure. This is **intended to make the functionality available
- to compiler writers** so they can use it to develop and test their
- dependency scanning tool.
-
Some compilers already have support for module dependency scanning:
* MSVC 19.34 and newer (provided with Visual Studio 17.4 and newer)
@@ -92,7 +86,6 @@ For example, add code like the following to a test project:
.. code-block:: cmake
- set(CMAKE_EXPERIMENTAL_CXX_MODULE_DYNDEP 1)
string(CONCAT CMAKE_EXPERIMENTAL_CXX_SCANDEP_SOURCE
"<CMAKE_CXX_COMPILER> <DEFINES> <INCLUDES> <FLAGS> <SOURCE>"
" -MT <DYNDEP_FILE> -MD -MF <DEP_FILE>"