diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-05-31 16:10:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-06-01 18:43:26 (GMT) |
commit | 0183e1bca379199949210217869c3a214702eba1 (patch) | |
tree | 29f8da1c03adf0fcf3470abd427b1ed3e893a4c2 /Help/dev/experimental.rst | |
parent | 9a63aa8d57394fbddf913ce35c2d32bbf523f0e6 (diff) | |
download | CMake-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.rst | 7 |
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>" |