summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.cxx
diff options
context:
space:
mode:
authorRaul Tambre <raul@tambre.ee>2020-12-19 12:14:18 (GMT)
committerRaul Tambre <raul@tambre.ee>2021-05-31 07:39:58 (GMT)
commit1cb4f592a09752972d89785c0e8f1e160d5b5c4e (patch)
tree0afc49c1b2e286cf9f24feb9da0b1f52b4a197f8 /Source/cmCustomCommand.cxx
parent7676e11943a6446e3cdc60370a37e4ce9cc548d3 (diff)
downloadCMake-1cb4f592a09752972d89785c0e8f1e160d5b5c4e.zip
CMake-1cb4f592a09752972d89785c0e8f1e160d5b5c4e.tar.gz
CMake-1cb4f592a09752972d89785c0e8f1e160d5b5c4e.tar.bz2
add_custom_command: Target-dependent generator expression support
OUTPUT variant with a TARGET given to allow resolving target-based generator expressions wouldn't work because OUTPUT is resolved before generator targets are created, i.e. FindGeneratorTargetToUse() returns nullptr. This is a known limitation, see #21364. Implements #21336.
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r--Source/cmCustomCommand.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx
index f6b9989..ec60ff7 100644
--- a/Source/cmCustomCommand.cxx
+++ b/Source/cmCustomCommand.cxx
@@ -150,3 +150,13 @@ void cmCustomCommand::SetCMP0116Status(cmPolicies::PolicyStatus cmp0116)
{
this->CMP0116Status = cmp0116;
}
+
+const std::string& cmCustomCommand::GetTarget() const
+{
+ return this->Target;
+}
+
+void cmCustomCommand::SetTarget(const std::string& target)
+{
+ this->Target = target;
+}