diff options
author | Brad King <brad.king@kitware.com> | 2020-10-16 16:12:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-12-10 12:06:20 (GMT) |
commit | 24156c02696b686ed38f431c30e7faf24a561ddb (patch) | |
tree | b83f27937adcefa00eacc6e27e8097c3977b55f0 /Source/cmCustomCommandGenerator.h | |
parent | b285748f79b642f3ab970912bc4512ded2f18124 (diff) | |
download | CMake-24156c02696b686ed38f431c30e7faf24a561ddb.zip CMake-24156c02696b686ed38f431c30e7faf24a561ddb.tar.gz CMake-24156c02696b686ed38f431c30e7faf24a561ddb.tar.bz2 |
cmCustomCommandGenerator: Evaluate generator expressions in outputs
This was already done for byproducts by commit a583b7bc17 (Genex:
Evaluate byproduct generator expressions in cmCustomCommandGenerator,
2019-09-11, v3.16.0-rc1~86^2). Like that commit, this does not actually
expose the feature to projects because the front-end commands still
reject generator expressions.
Issue: #12877
Diffstat (limited to 'Source/cmCustomCommandGenerator.h')
-rw-r--r-- | Source/cmCustomCommandGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCustomCommandGenerator.h b/Source/cmCustomCommandGenerator.h index cb0d7df..dac3596 100644 --- a/Source/cmCustomCommandGenerator.h +++ b/Source/cmCustomCommandGenerator.h @@ -24,6 +24,7 @@ class cmCustomCommandGenerator bool MakeVars; cmCustomCommandLines CommandLines; std::vector<std::vector<std::string>> EmulatorsWithArguments; + std::vector<std::string> Outputs; std::vector<std::string> Byproducts; std::vector<std::string> Depends; std::string WorkingDirectory; |