summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-03-04 18:06:29 (GMT)
committerBrad King <brad.king@kitware.com>2014-03-04 18:12:47 (GMT)
commit971653b767f2e5e81085c525c94d5e596474aa88 (patch)
tree93fc5f62c98c5d6380de02a44f3e6ef690dfe838 /Source/cmLocalNinjaGenerator.cxx
parent0c0ef9e7b7016f8ce6310c30660151b15e062a93 (diff)
downloadCMake-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.cxx5
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