diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-08-22 13:02:20 (GMT) |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-02 17:30:43 (GMT) |
commit | 903d914b28655f0643409c4c165654b1daf2e0fd (patch) | |
tree | 3c2f98f760b60e8d5437383454492ea315495c03 /Source/cmLocalGenerator.h | |
parent | 8a0eb78f3b49b1f999f4b0c0d5d23f4589b465f7 (diff) | |
download | CMake-903d914b28655f0643409c4c165654b1daf2e0fd.zip CMake-903d914b28655f0643409c4c165654b1daf2e0fd.tar.gz CMake-903d914b28655f0643409c4c165654b1daf2e0fd.tar.bz2 |
Make cmLocalGenerator::ConvertToLinkReference virtual
This provides a mechanism for the local generator to override how
library search paths are generated.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 1f5a26e..69e452b 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -369,7 +369,7 @@ protected: std::string FindRelativePathTopBinary(); void SetupPathConversions(); - std::string ConvertToLinkReference(std::string const& lib); + virtual std::string ConvertToLinkReference(std::string const& lib); /** Check whether the native build system supports the given definition. Issues a warning. */ |