mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +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'
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmGeneratorExpressionEvaluationFile_h
|
|
#define cmGeneratorExpressionEvaluationFile_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmGeneratorExpression.h"
|
|
#include "cm_auto_ptr.hxx"
|
|
#include "cm_sys_stat.h"
|
|
|
|
class cmLocalGenerator;
|
|
|
|
class cmGeneratorExpressionEvaluationFile
|
|
{
|
|
public:
|
|
cmGeneratorExpressionEvaluationFile(
|
|
const std::string& input,
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> outputFileExpr,
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> condition, bool inputIsContent);
|
|
|
|
void Generate(cmLocalGenerator* lg);
|
|
|
|
std::vector<std::string> GetFiles() const { return this->Files; }
|
|
|
|
void CreateOutputFile(cmLocalGenerator* lg, std::string const& config);
|
|
|
|
private:
|
|
void Generate(cmLocalGenerator* lg, const std::string& config,
|
|
const std::string& lang,
|
|
cmCompiledGeneratorExpression* inputExpression,
|
|
std::map<std::string, std::string>& outputFiles, mode_t perm);
|
|
|
|
private:
|
|
const std::string Input;
|
|
const CM_AUTO_PTR<cmCompiledGeneratorExpression> OutputFileExpr;
|
|
const CM_AUTO_PTR<cmCompiledGeneratorExpression> Condition;
|
|
std::vector<std::string> Files;
|
|
const bool InputIsContent;
|
|
};
|
|
|
|
#endif
|