summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-09 21:15:40 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-14 22:41:22 (GMT)
commit2ee1cb85e855ce0596e85ef1fc53c5c25cc1465f (patch)
tree89d55903e894a1736f99ae19d24ba40f8c33c22b /Source/cmTarget.h
parenta48bcabd33c3d7dcab394e267d4f1b5d21e0d85d (diff)
downloadCMake-2ee1cb85e855ce0596e85ef1fc53c5c25cc1465f.zip
CMake-2ee1cb85e855ce0596e85ef1fc53c5c25cc1465f.tar.gz
CMake-2ee1cb85e855ce0596e85ef1fc53c5c25cc1465f.tar.bz2
cmTarget: Move ImportInfoMap out of internal class.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 03c4cbe..97515a7 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -449,6 +449,9 @@ private:
std::string SharedDeps;
};
+ typedef std::map<std::string, ImportInfo> ImportInfoMapType;
+ mutable ImportInfoMapType ImportInfoMap;
+
ImportInfo const* GetImportInfo(const std::string& config) const;
void ComputeImportInfo(std::string const& desired_config,
ImportInfo& info) const;