diff options
author | Brad King <brad.king@kitware.com> | 2014-03-04 18:06:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-04 18:12:47 (GMT) |
commit | 971653b767f2e5e81085c525c94d5e596474aa88 (patch) | |
tree | 93fc5f62c98c5d6380de02a44f3e6ef690dfe838 /Source/cmLocalNinjaGenerator.cxx | |
parent | 0c0ef9e7b7016f8ce6310c30660151b15e062a93 (diff) | |
download | CMake-971653b767f2e5e81085c525c94d5e596474aa88.zip CMake-971653b767f2e5e81085c525c94d5e596474aa88.tar.gz CMake-971653b767f2e5e81085c525c94d5e596474aa88.tar.bz2 |
cmLocalGenerator: Add format option to ConvertToLinkReference
Replace the hard-coded SHELL output format with an optional argument.
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmLocalNinjaGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index c989cfb..862823f 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -143,9 +143,10 @@ cmGlobalNinjaGenerator* cmLocalNinjaGenerator::GetGlobalNinjaGenerator() // Virtual protected methods. std::string -cmLocalNinjaGenerator::ConvertToLinkReference(std::string const& lib) +cmLocalNinjaGenerator::ConvertToLinkReference(std::string const& lib, + OutputFormat format) { - return this->Convert(lib.c_str(), HOME_OUTPUT, SHELL); + return this->Convert(lib.c_str(), HOME_OUTPUT, format); } std::string |