diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-05-16 15:31:26 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-05-16 16:47:50 (GMT) |
commit | d6c0e827bc0f49ee6aa6deb5c0ee3838475fe3fe (patch) | |
tree | 7129c1e89773603e1c805937a1d7e76f8ab743af /Source/cmGlobalGenerator.h | |
parent | 28ee3bef3467bb05f9ca4fa74c51e566177ad1c9 (diff) | |
download | CMake-d6c0e827bc0f49ee6aa6deb5c0ee3838475fe3fe.zip CMake-d6c0e827bc0f49ee6aa6deb5c0ee3838475fe3fe.tar.gz CMake-d6c0e827bc0f49ee6aa6deb5c0ee3838475fe3fe.tar.bz2 |
cmGlobalGenerator: add a `QuotedPrintable` method for commands
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 79fe52c..f24465a 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -85,6 +85,7 @@ struct GeneratedMakeCommand } std::string Printable() const { return cmJoin(this->PrimaryCommand, " "); } + std::string QuotedPrintable() const; std::vector<std::string> PrimaryCommand; bool RequiresOutputForward = false; |