diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-09-21 20:03:08 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-10-02 14:17:31 (GMT) |
commit | 0c07f390068fe5a9c3c99ebc64f6e6c72b6eff41 (patch) | |
tree | 89a4e61adfbb81b0194602a09f0052398d6100a0 /Source/cmGeneratorTarget.h | |
parent | 68caec9137f47fda219995db7cfdf588886c84a1 (diff) | |
download | CMake-0c07f390068fe5a9c3c99ebc64f6e6c72b6eff41.zip CMake-0c07f390068fe5a9c3c99ebc64f6e6c72b6eff41.tar.gz CMake-0c07f390068fe5a9c3c99ebc64f6e6c72b6eff41.tar.bz2 |
cmExperimental: remove the flag for C++ modules
All the major compilers now have scheduled releases with support for
scanning, so remove the experimental gate.
Fixes: #18355
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 751f907..72920d6 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -1288,10 +1288,10 @@ public: { // C++ is not available. MissingCxx, - // The experimental feature is not available. - MissingExperimentalFlag, // The target does not require at least C++20. NoCxx20, + // C++20 module scanning rules are not present. + MissingRule, // C++20 modules are available and working. Supported, }; |