diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:50 (GMT) |
commit | f83e84028ac28ce098ea76bd857ae1663c295494 (patch) | |
tree | 0a56259fdc251b1c79a1f74611586c0657fd7f95 /Source/cmGeneratorTarget.h | |
parent | b3f0e35308993de825f00ec18fc6559e6609c9b0 (diff) | |
download | CMake-f83e84028ac28ce098ea76bd857ae1663c295494.zip CMake-f83e84028ac28ce098ea76bd857ae1663c295494.tar.gz CMake-f83e84028ac28ce098ea76bd857ae1663c295494.tar.bz2 |
cmGeneratorTarget: Move CompileInfoMap from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 3dbbca1..68e7a8a 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -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; |