summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmCustomCommandGenerator.cxx39
1 files changed, 28 insertions, 11 deletions
diff --git a/Source/cmCustomCommandGenerator.cxx b/Source/cmCustomCommandGenerator.cxx
index e099630..cc0419d 100644
--- a/Source/cmCustomCommandGenerator.cxx
+++ b/Source/cmCustomCommandGenerator.cxx
@@ -24,25 +24,42 @@
#include "cmTransformDepfile.h"
namespace {
-std::vector<std::string> EvaluatePaths(std::vector<std::string> const& paths,
- cmGeneratorExpression const& ge,
- cmLocalGenerator* lg,
- std::string const& config)
+std::vector<std::string> EvaluateDepends(std::vector<std::string> const& paths,
+ cmGeneratorExpression const& ge,
+ cmLocalGenerator* lg,
+ std::string const& config)
{
- std::vector<std::string> result;
+ std::vector<std::string> depends;
for (std::string const& p : paths) {
std::unique_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(p);
std::string const& ep = cge->Evaluate(lg, config);
- cm::append(result, cmExpandedList(ep));
+ cm::append(depends, cmExpandedList(ep));
}
- for (std::string& p : result) {
+ for (std::string& p : depends) {
if (cmSystemTools::FileIsFullPath(p)) {
p = cmSystemTools::CollapseFullPath(p);
} else {
cmSystemTools::ConvertToUnixSlashes(p);
}
}
- return result;
+ return depends;
+}
+
+std::vector<std::string> EvaluateOutputs(std::vector<std::string> const& paths,
+ cmGeneratorExpression const& ge,
+ cmLocalGenerator* lg,
+ std::string const& config)
+{
+ std::vector<std::string> outputs;
+ for (std::string const& p : paths) {
+ std::unique_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(p);
+ std::string const& ep = cge->Evaluate(lg, config);
+ cm::append(outputs, cmExpandedList(ep));
+ }
+ for (std::string& p : outputs) {
+ p = cmSystemTools::CollapseFullPath(p, lg->GetCurrentBinaryDirectory());
+ }
+ return outputs;
}
}
@@ -124,10 +141,10 @@ cmCustomCommandGenerator::cmCustomCommandGenerator(cmCustomCommand const& cc,
this->CommandLines.push_back(std::move(argv));
}
- this->Outputs = EvaluatePaths(cc.GetOutputs(), ge, this->LG, this->Config);
+ this->Outputs = EvaluateOutputs(cc.GetOutputs(), ge, this->LG, this->Config);
this->Byproducts =
- EvaluatePaths(cc.GetByproducts(), ge, this->LG, this->Config);
- this->Depends = EvaluatePaths(cc.GetDepends(), ge, this->LG, this->Config);
+ EvaluateOutputs(cc.GetByproducts(), ge, this->LG, this->Config);
+ this->Depends = EvaluateDepends(cc.GetDepends(), ge, this->LG, this->Config);
const std::string& workingdirectory = this->CC->GetWorkingDirectory();
if (!workingdirectory.empty()) {