summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionNode.cxx
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2017-01-23 19:13:49 (GMT)
committerBrad King <brad.king@kitware.com>2017-04-18 15:36:09 (GMT)
commit93c89bc75ceee599ba7c08b8fe1ac5104942054f (patch)
treefc956fd1c58cd967309e78b9dd0f2384505b8807 /Source/cmGeneratorExpressionNode.cxx
parentac0cf7ff4f5a846381593cf28ebbc9cfaf107149 (diff)
downloadCMake-93c89bc75ceee599ba7c08b8fe1ac5104942054f.zip
CMake-93c89bc75ceee599ba7c08b8fe1ac5104942054f.tar.gz
CMake-93c89bc75ceee599ba7c08b8fe1ac5104942054f.tar.bz2
Genex: Allow TARGET_OBJECTS to be used everywhere
Previously the `TARGET_OBJECTS` generator expression was limited only to use in a buildsystem context so that Xcode's placeholders in object file paths can be evaluated. Lift this restriction so that the expression can at least be used in most settings. Co-Author: Brad King <brad.king@kitware.com>
Diffstat (limited to 'Source/cmGeneratorExpressionNode.cxx')
-rw-r--r--Source/cmGeneratorExpressionNode.cxx32
1 files changed, 25 insertions, 7 deletions
diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx
index 65949a3..1215737 100644
--- a/Source/cmGeneratorExpressionNode.cxx
+++ b/Source/cmGeneratorExpressionNode.cxx
@@ -1243,20 +1243,38 @@ static const struct TargetObjectsNode : public cmGeneratorExpressionNode
return std::string();
}
if (!context->EvaluateForBuildsystem) {
- std::ostringstream e;
- e << "The evaluation of the TARGET_OBJECTS generator expression "
- "is only suitable for consumption by CMake. It is not suitable "
- "for writing out elsewhere.";
- reportError(context, content->GetOriginalExpression(), e.str());
- return std::string();
+ cmGlobalGenerator* gg = context->LG->GetGlobalGenerator();
+ std::string reason;
+ if (!gg->HasKnownObjectFileLocation(&reason)) {
+ std::ostringstream e;
+ e << "The evaluation of the TARGET_OBJECTS generator expression "
+ "is only suitable for consumption by CMake (limited"
+ << reason << "). "
+ "It is not suitable for writing out elsewhere.";
+ reportError(context, content->GetOriginalExpression(), e.str());
+ return std::string();
+ }
}
std::vector<std::string> objects;
gt->GetTargetObjectNames(context->Config, objects);
+ std::string obj_dir;
+ if (context->EvaluateForBuildsystem) {
+ // Use object file directory with buildsystem placeholder.
+ obj_dir = gt->ObjectDirectory;
+ // Here we assume that the set of object files produced
+ // by an object library does not vary with configuration
+ // and do not set HadContextSensitiveCondition to true.
+ } else {
+ // Use object file directory with per-config location.
+ obj_dir = gt->GetObjectDirectory(context->Config);
+ context->HadContextSensitiveCondition = true;
+ }
+
for (std::vector<std::string>::iterator oi = objects.begin();
oi != objects.end(); ++oi) {
- *oi = gt->ObjectDirectory + *oi;
+ *oi = obj_dir + *oi;
}
// Create the cmSourceFile instances in the referencing directory.