diff options
author | Brad King <brad.king@kitware.com> | 2020-09-04 17:53:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-08 19:38:40 (GMT) |
commit | 844779bdc1cf124974d946d7a221407dd4d3f693 (patch) | |
tree | 73f18d6389c713a1800174c8c1ad091fe7a7f471 /Source/cmMakefileTargetGenerator.h | |
parent | b1b345c21a180fac2b9ccecf02f708d00f100590 (diff) | |
download | CMake-844779bdc1cf124974d946d7a221407dd4d3f693.zip CMake-844779bdc1cf124974d946d7a221407dd4d3f693.tar.gz CMake-844779bdc1cf124974d946d7a221407dd4d3f693.tar.bz2 |
cmMakefileTargetGenerator: Simplify custom command output collection
Diffstat (limited to 'Source/cmMakefileTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileTargetGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefileTargetGenerator.h b/Source/cmMakefileTargetGenerator.h index fd6dac8..b7ec442 100644 --- a/Source/cmMakefileTargetGenerator.h +++ b/Source/cmMakefileTargetGenerator.h @@ -228,6 +228,9 @@ protected: // Set of extra output files to be driven by the build. std::set<std::string> ExtraFiles; + // Set of custom command output files to be driven by the build. + std::set<std::string> CustomCommandOutputs; + using MultipleOutputPairsType = std::map<std::string, std::string>; MultipleOutputPairsType MultipleOutputPairs; bool WriteMakeRule(std::ostream& os, const char* comment, |