mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
82be694c7a
Previously `file(GENERATE)` did not define any behavior for relative paths given to the `OUTPUT` or `INPUT` arguments. Define behavior consistent with CMake conventions and add a policy to provide compatibility for projects that relied on the old accidental behavior. Fixes: #16786
58 lines
1.7 KiB
C++
58 lines
1.7 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 "cmPolicies.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,
|
|
cmPolicies::PolicyStatus policyStatusCMP0070);
|
|
|
|
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);
|
|
|
|
enum PathRole
|
|
{
|
|
PathForInput,
|
|
PathForOutput
|
|
};
|
|
std::string FixRelativePath(std::string const& filePath, PathRole role,
|
|
cmLocalGenerator* lg);
|
|
|
|
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;
|
|
cmPolicies::PolicyStatus PolicyStatusCMP0070;
|
|
};
|
|
|
|
#endif
|