CMake/Source/cmStandardLevelResolver.h
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

74 lines
2.6 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include <string>
#include <cm/optional>
#include "cmValue.h"
class cmMakefile;
class cmGeneratorTarget;
class cmStandardLevel;
class cmTarget;
class cmStandardLevelResolver
{
public:
explicit cmStandardLevelResolver(cmMakefile* makefile)
: Makefile(makefile)
{
}
std::string GetCompileOptionDef(cmGeneratorTarget const* target,
std::string const& lang,
std::string const& config) const;
std::string GetEffectiveStandard(cmGeneratorTarget const* target,
std::string const& lang,
std::string const& config) const;
std::string GetLevelString(std::string const& lang,
cmStandardLevel const& level) const;
bool AddRequiredTargetFeature(cmTarget* target, std::string const& feature,
std::string* error = nullptr) const;
bool CompileFeatureKnown(std::string const& targetName,
std::string const& feature, std::string& lang,
std::string* error) const;
cm::optional<cmStandardLevel> CompileFeatureStandardLevel(
std::string const& lang, std::string const& feature) const;
cm::optional<cmStandardLevel> LanguageStandardLevel(
std::string const& lang, std::string const& standardStr) const;
cmValue CompileFeaturesAvailable(std::string const& lang,
std::string* error) const;
bool GetNewRequiredStandard(std::string const& targetName,
std::string const& feature,
cmValue currentLangStandardValue,
cm::optional<cmStandardLevel>& featureLevel,
std::string& newRequiredStandard,
std::string* error = nullptr) const;
bool HaveStandardAvailable(cmGeneratorTarget const* target,
std::string const& lang,
std::string const& config,
std::string const& feature) const;
bool IsLaterStandard(std::string const& lang, std::string const& lhs,
std::string const& rhs) const;
private:
bool CheckCompileFeaturesAvailable(std::string const& targetName,
std::string const& feature,
std::string& lang,
std::string* error) const;
cmMakefile* Makefile;
};