diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2023-07-17 18:02:33 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2023-07-17 20:53:52 (GMT) |
commit | d84681d8f068225f786453a5a77791a1eb8e5459 (patch) | |
tree | 4949d7fd04d972a7db3a5b130e3812c642de563c /Source/cmExperimental.cxx | |
parent | 1ca82e7a04b16159721c44385c3b5b8a2762f735 (diff) | |
download | CMake-d84681d8f068225f786453a5a77791a1eb8e5459.zip CMake-d84681d8f068225f786453a5a77791a1eb8e5459.tar.gz CMake-d84681d8f068225f786453a5a77791a1eb8e5459.tar.bz2 |
try_compile(): Pass down CMAKE_EXPERIMENTAL_* feature flags
Diffstat (limited to 'Source/cmExperimental.cxx')
-rw-r--r-- | Source/cmExperimental.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmExperimental.cxx b/Source/cmExperimental.cxx index bdbd353..5d25f66 100644 --- a/Source/cmExperimental.cxx +++ b/Source/cmExperimental.cxx @@ -24,6 +24,7 @@ cmExperimental::FeatureData LookupTable[] = { "CMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API", "CMake's C++ module support is experimental. It is meant only for " "experimentation and feedback to CMake developers.", + false, // https://gitlab.kitware.com/cmake/cmake/-/issues/25097 false }, }; static_assert(sizeof(LookupTable) / sizeof(LookupTable[0]) == |