diff options
author | Brad King <brad.king@kitware.com> | 2020-10-30 15:48:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-12-15 12:00:53 (GMT) |
commit | 15467f12f796205f97721f43ae7d9ee7cdc47466 (patch) | |
tree | 17fb00d71cb6698bd75a03b560faf7eeab557f6c /Source/cmLocalGenerator.h | |
parent | 7b64b0cd5a4046bf8743c3e2d3c57cb470bfa95f (diff) | |
download | CMake-15467f12f796205f97721f43ae7d9ee7cdc47466.zip CMake-15467f12f796205f97721f43ae7d9ee7cdc47466.tar.gz CMake-15467f12f796205f97721f43ae7d9ee7cdc47466.tar.bz2 |
cmLocalGenerator: Adopt custom target 'force' output name generation
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index db239c0..d9c2c1e 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -364,6 +364,8 @@ public: bool command_expand_lists = false, const std::string& job_pool = "", bool stdPipesUTF8 = false); + std::string CreateUtilityOutput(std::string const& targetName); + virtual std::vector<cmCustomCommandGenerator> MakeCustomCommandGenerators( cmCustomCommand const& cc, std::string const& config); @@ -688,7 +690,7 @@ void AppendCustomCommandToOutput(cmLocalGenerator& lg, void AddUtilityCommand(cmLocalGenerator& lg, const cmListFileBacktrace& lfbt, cmCommandOrigin origin, cmTarget* target, - std::string const& force, const char* workingDir, + const char* workingDir, const std::vector<std::string>& byproducts, const std::vector<std::string>& depends, const cmCustomCommandLines& commandLines, |