From 903d914b28655f0643409c4c165654b1daf2e0fd Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Mon, 22 Aug 2011 14:02:20 +0100 Subject: [PATCH] Make cmLocalGenerator::ConvertToLinkReference virtual This provides a mechanism for the local generator to override how library search paths are generated. --- Source/cmLocalGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 1f5a26eba..69e452be5 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. */