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/cmLocalGenerator.h | |
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/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 986f405..2a76124 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -415,7 +415,8 @@ protected: std::string FindRelativePathTopBinary(); void SetupPathConversions(); - virtual std::string ConvertToLinkReference(std::string const& lib); + virtual std::string ConvertToLinkReference(std::string const& lib, + OutputFormat format = SHELL); /** Check whether the native build system supports the given definition. Issues a warning. */ |