diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-16 17:19:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-16 18:24:43 (GMT) |
commit | 8f363d6771dfa792d606978e1e406229637078f6 (patch) | |
tree | 2df476b2fe5383b331fbf1f54dddc9e03c3b0d6a /Source/cmTarget.h | |
parent | 5794dbc301ace0041c5fc50096cc5331e8ba3c34 (diff) | |
download | CMake-8f363d6771dfa792d606978e1e406229637078f6.zip CMake-8f363d6771dfa792d606978e1e406229637078f6.tar.gz CMake-8f363d6771dfa792d606978e1e406229637078f6.tar.bz2 |
cmGeneratorTarget: Move ImportInfo from cmTarget.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 7715c7c..fa11953 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -419,32 +419,8 @@ private: bool LinkLibrariesForVS6Analyzed; #endif - // Cache import information from properties for each configuration. - struct ImportInfo - { - ImportInfo(): NoSOName(false), Multiplicity(0) {} - bool NoSOName; - int Multiplicity; - std::string Location; - std::string SOName; - std::string ImportLibrary; - std::string Languages; - std::string Libraries; - std::string LibrariesProp; - 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; - std::string ProcessSourceItemCMP0049(const std::string& s); - void MaybeInvalidatePropertyCache(const std::string& prop); - /** Return whether or not the target has a DLL import library. */ bool HasImportLibrary() const; |