Files
cmake/Source/cmPlaceholderExpander.h
T
Marc Chevrier a570ee4c8f cmPlaceHolderExpander: Add recognition of genex
Add a mode to ensure genex at kept as is.
2026-09-14 18:24:48 +02:00

27 lines
576 B
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <string>
class cmPlaceholderExpander
{
public:
enum class HandleGenex
{
No,
Yes
};
virtual ~cmPlaceholderExpander() = default;
std::string& ExpandVariables(std::string& string,
HandleGenex handleGenex = HandleGenex::No);
protected:
virtual std::string ExpandVariable(std::string const& variable) = 0;
};