summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkItem.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-04 17:55:46 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-06 22:51:49 (GMT)
commit10040601a2e13cbb0653a20c55c1c696b5cacf29 (patch)
tree5f30081473c2f8eddc961adfc4a596e9c22a1876 /Source/cmLinkItem.h
parentd9da6ee29fe0267ed347860f24f21be647ac81e8 (diff)
downloadCMake-10040601a2e13cbb0653a20c55c1c696b5cacf29.zip
CMake-10040601a2e13cbb0653a20c55c1c696b5cacf29.tar.gz
CMake-10040601a2e13cbb0653a20c55c1c696b5cacf29.tar.bz2
cmLinkImplementationLibraries: Move to namespace scope.
Diffstat (limited to 'Source/cmLinkItem.h')
-rw-r--r--Source/cmLinkItem.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmLinkItem.h b/Source/cmLinkItem.h
index da91ed1..a5427de 100644
--- a/Source/cmLinkItem.h
+++ b/Source/cmLinkItem.h
@@ -44,4 +44,16 @@ public:
bool FromGenex;
};
+/** The link implementation specifies the direct library
+ dependencies needed by the object files of the target. */
+struct cmLinkImplementationLibraries
+{
+ // Libraries linked directly in this configuration.
+ std::vector<cmLinkImplItem> Libraries;
+
+ // Libraries linked directly in other configurations.
+ // Needed only for OLD behavior of CMP0003.
+ std::vector<cmLinkItem> WrongConfigLibraries;
+};
+
#endif