diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-15 22:55:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-06 07:15:58 (GMT) |
commit | 59e21ffa134faf0b089d9a704b3763e7f6f237d5 (patch) | |
tree | 29594cc437406a631386c2ccf4b1cf316106537f /Source/cmCPackPropertiesGenerator.cxx | |
parent | 242dcc2c22535c00348de18bba41605428ccdb73 (diff) | |
download | CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.zip CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.gz CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.bz2 |
Port static calls from cmLocalGenerator to cmOutputConverter.
Diffstat (limited to 'Source/cmCPackPropertiesGenerator.cxx')
-rw-r--r-- | Source/cmCPackPropertiesGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCPackPropertiesGenerator.cxx b/Source/cmCPackPropertiesGenerator.cxx index cf24c13..368a0e6 100644 --- a/Source/cmCPackPropertiesGenerator.cxx +++ b/Source/cmCPackPropertiesGenerator.cxx @@ -1,6 +1,6 @@ #include "cmCPackPropertiesGenerator.h" -#include "cmLocalGenerator.h" +#include "cmOutputConverter.h" cmCPackPropertiesGenerator::cmCPackPropertiesGenerator( cmMakefile* mf, @@ -29,15 +29,15 @@ void cmCPackPropertiesGenerator::GenerateScriptForConfig(std::ostream& os, cmInstalledFile::Property const& property = i->second; os << indent << "set_property(INSTALL " << - cmLocalGenerator::EscapeForCMake(expandedFileName) << " PROPERTY " << - cmLocalGenerator::EscapeForCMake(name); + cmOutputConverter::EscapeForCMake(expandedFileName) << " PROPERTY " << + cmOutputConverter::EscapeForCMake(name); for(cmInstalledFile::ExpressionVectorType::const_iterator j = property.ValueExpressions.begin(); j != property.ValueExpressions.end(); ++j) { std::string value = (*j)->Evaluate(this->Makefile, config); - os << " " << cmLocalGenerator::EscapeForCMake(value); + os << " " << cmOutputConverter::EscapeForCMake(value); } os << ")\n"; |