Imported Upstream version 3.25.0
[platform/upstream/cmake.git] / Source / cmExperimental.h
1 /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2    file Copyright.txt or https://cmake.org/licensing for details.  */
3
4 #pragma once
5
6 #include "cmConfigure.h" // IWYU pragma: keep
7
8 class cmMakefile;
9
10 class cmExperimental
11 {
12 public:
13   enum class Feature
14   {
15     CxxModuleCMakeApi,
16
17     Sentinel,
18   };
19
20   static bool HasSupportEnabled(cmMakefile const& mf, Feature f);
21 };