1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cmTargetPrecompileHeadersCommand.h"
#include <utility>
#include "cmGeneratorExpression.h"
#include "cmList.h"
#include "cmListFileCache.h"
#include "cmMakefile.h"
#include "cmMessageType.h"
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
#include "cmTarget.h"
#include "cmTargetPropCommandBase.h"
namespace {
std::vector<std::string> ConvertToAbsoluteContent(
std::vector<std::string> const& content, std::string const& baseDir)
{
std::vector<std::string> absoluteContent;
absoluteContent.reserve(content.size());
for (std::string const& src : content) {
std::string absoluteSrc;
// Use '<foo.h>' and '"foo.h"' includes and absolute paths as-is.
// Interpret relative paths with respect to the source directory.
// If the path starts in a generator expression, assume it is absolute.
if (cmHasLiteralPrefix(src, "<") || cmHasLiteralPrefix(src, "\"") ||
cmSystemTools::FileIsFullPath(src) ||
cmGeneratorExpression::Find(src) == 0) {
absoluteSrc = src;
} else {
absoluteSrc = cmStrCat(baseDir, '/', src);
}
absoluteContent.emplace_back(std::move(absoluteSrc));
}
return absoluteContent;
}
class TargetPrecompileHeadersImpl : public cmTargetPropCommandBase
{
public:
using cmTargetPropCommandBase::cmTargetPropCommandBase;
private:
bool HandleDirectContent(cmTarget* tgt,
std::vector<std::string> const& content,
bool /*prepend*/, bool /*system*/) override
{
std::string const& base = this->Makefile->GetCurrentSourceDirectory();
tgt->AppendProperty("PRECOMPILE_HEADERS",
this->Join(ConvertToAbsoluteContent(content, base)),
this->Makefile->GetBacktrace());
return true;
}
void HandleInterfaceContent(cmTarget* tgt,
std::vector<std::string> const& content,
bool prepend, bool system) override
{
std::string const& base = this->Makefile->GetCurrentSourceDirectory();
this->cmTargetPropCommandBase::HandleInterfaceContent(
tgt, ConvertToAbsoluteContent(content, base), prepend, system);
}
void HandleMissingTarget(std::string const& name) override
{
this->Makefile->IssueMessage(
MessageType::FATAL_ERROR,
cmStrCat("Cannot specify precompile headers for target \"", name,
"\" which is not built by this project."));
}
std::string Join(std::vector<std::string> const& content) override
{
return cmList::to_string(content);
}
};
} // namespace
bool cmTargetPrecompileHeadersCommand(std::vector<std::string> const& args,
cmExecutionStatus& status)
{
return TargetPrecompileHeadersImpl(status).HandleArguments(
args, "PRECOMPILE_HEADERS",
TargetPrecompileHeadersImpl::PROCESS_REUSE_FROM);
}
|