diff options
author | Brad King <brad.king@kitware.com> | 2020-10-16 13:55:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-12-10 12:06:21 (GMT) |
commit | 947ba01bf987bce09c2fdd5e2547f79af2c5844b (patch) | |
tree | 953be58128f912a1e472e8eca5a51b6b772d10ee /Source/cmLocalGenerator.h | |
parent | 1902d28ebc50ee93acb1be2320b79f2e844f7f41 (diff) | |
download | CMake-947ba01bf987bce09c2fdd5e2547f79af2c5844b.zip CMake-947ba01bf987bce09c2fdd5e2547f79af2c5844b.tar.gz CMake-947ba01bf987bce09c2fdd5e2547f79af2c5844b.tar.bz2 |
cmLocalGenerator: Factor out helper to expand custom command output paths
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 9ed3b15..c246e2e 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -22,6 +22,7 @@ #include "cmProperty.h" #include "cmStateSnapshot.h" +class cmCompiledGeneratorExpression; class cmComputeLinkInformation; class cmCustomCommandGenerator; class cmCustomCommandLines; @@ -362,6 +363,9 @@ public: bool command_expand_lists = false, const std::string& job_pool = "", bool stdPipesUTF8 = false); + std::vector<std::string> ExpandCustomCommandOutputPaths( + cmCompiledGeneratorExpression const& cge, std::string const& config); + /** * Add target byproducts. */ |