diff options
author | Brad King <brad.king@kitware.com> | 2022-11-29 15:22:39 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-11-29 15:22:47 (GMT) |
commit | 51235d14eb95883d5afa8baec85f32f374eed874 (patch) | |
tree | 680369b77d81b6dff45c4229d9075c1e0394f11b /Help | |
parent | 4c2952c5cb95e06e3f9c096d71bc342bfa2d4443 (diff) | |
parent | 12e4bc73cba0218a3e9a9a23d43f7b3d7d8e004e (diff) | |
download | CMake-51235d14eb95883d5afa8baec85f32f374eed874.zip CMake-51235d14eb95883d5afa8baec85f32f374eed874.tar.gz CMake-51235d14eb95883d5afa8baec85f32f374eed874.tar.bz2 |
Merge topic 'msvc-cxx-no-optin-experimental-flag' into release-3.25
12e4bc73cb MSVC: don't opt into dyndep support
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !7965
Diffstat (limited to 'Help')
-rw-r--r-- | Help/dev/experimental.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/dev/experimental.rst b/Help/dev/experimental.rst index 78770f7..03eb076 100644 --- a/Help/dev/experimental.rst +++ b/Help/dev/experimental.rst @@ -41,7 +41,8 @@ to tell CMake how to invoke the C++20 module dependency scanning tool. MSVC 19.34 (provided with Visual Studio 17.4) and above contains the support that CMake needs and has these variables already set up as required and only -the UUID variable needs to be set. +the UUID and the ``CMAKE_EXPERIMENTAL_CXX_MODULE_DYNDEP`` variables need to be +set. For example, add code like the following to a test project: |