mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
1d829c862c
Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmGeneratorExpressionNode_h
|
|
#define cmGeneratorExpressionNode_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmGeneratorTarget;
|
|
class cmLocalGenerator;
|
|
struct GeneratorExpressionContent;
|
|
struct cmGeneratorExpressionContext;
|
|
struct cmGeneratorExpressionDAGChecker;
|
|
|
|
struct cmGeneratorExpressionNode
|
|
{
|
|
enum
|
|
{
|
|
DynamicParameters = 0,
|
|
OneOrMoreParameters = -1,
|
|
OneOrZeroParameters = -2
|
|
};
|
|
virtual ~cmGeneratorExpressionNode() {}
|
|
|
|
virtual bool GeneratesContent() const { return true; }
|
|
|
|
virtual bool RequiresLiteralInput() const { return false; }
|
|
|
|
virtual bool AcceptsArbitraryContentParameter() const { return false; }
|
|
|
|
virtual int NumExpectedParameters() const { return 1; }
|
|
|
|
virtual std::string Evaluate(
|
|
const std::vector<std::string>& parameters,
|
|
cmGeneratorExpressionContext* context,
|
|
const GeneratorExpressionContent* content,
|
|
cmGeneratorExpressionDAGChecker* dagChecker) const = 0;
|
|
|
|
static std::string EvaluateDependentExpression(
|
|
std::string const& prop, cmLocalGenerator* lg,
|
|
cmGeneratorExpressionContext* context, const cmGeneratorTarget* headTarget,
|
|
const cmGeneratorTarget* currentTarget,
|
|
cmGeneratorExpressionDAGChecker* dagChecker);
|
|
|
|
static const cmGeneratorExpressionNode* GetNode(
|
|
const std::string& identifier);
|
|
};
|
|
|
|
void reportError(cmGeneratorExpressionContext* context,
|
|
const std::string& expr, const std::string& result);
|
|
|
|
#endif
|