cmGeneratorTarget: Move CompileInfoMap from cmTarget.

This commit is contained in:
Stephen Kelly
2015-08-04 19:19:51 +02:00
parent b3f0e35308
commit f83e84028a
4 changed files with 51 additions and 50 deletions
+10
View File
@@ -230,6 +230,16 @@ public:
/** Whether this library has soname enabled and platform supports it. */
bool HasSOName(const std::string& config) const;
struct CompileInfo
{
std::string CompilePdbDir;
};
CompileInfo const* GetCompileInfo(const std::string& config) const;
typedef std::map<std::string, CompileInfo> CompileInfoMapType;
mutable CompileInfoMapType CompileInfoMap;
/** Get the name of the compiler pdb file for the target. */
std::string GetCompilePDBName(const std::string& config="") const;