diff options
author | Brad King <brad.king@kitware.com> | 2008-02-04 20:22:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-04 20:22:10 (GMT) |
commit | 847c8403fe23e241d7fd3a7478790938afc24a9e (patch) | |
tree | 3ef399b494caa9d489f87a4fbd683783970713c9 /Source/cmComputeLinkInformation.h | |
parent | c12a7e388d449e96107ba1eea8b8b2f2469ec20f (diff) | |
download | CMake-847c8403fe23e241d7fd3a7478790938afc24a9e.zip CMake-847c8403fe23e241d7fd3a7478790938afc24a9e.tar.gz CMake-847c8403fe23e241d7fd3a7478790938afc24a9e.tar.bz2 |
BUG: Added TARGET_ARCHIVES_MAY_BE_SHARED_LIBS global property to help compute proper rpath information on AIX when shared libraries have names like "libfoo.a".
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index c5f3778..be3275c 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -21,6 +21,7 @@ #include <cmsys/RegularExpression.hxx> +class cmake; class cmGlobalGenerator; class cmLocalGenerator; class cmMakefile; @@ -79,6 +80,7 @@ private: cmMakefile* Makefile; cmLocalGenerator* LocalGenerator; cmGlobalGenerator* GlobalGenerator; + cmake* CMakeInstance; // Configuration information. const char* Config; @@ -114,6 +116,7 @@ private: std::string SharedLinkTypeFlag; bool LinkTypeEnabled; void SetCurrentLinkType(LinkType lt); + bool ArchivesMayBeShared; // Link item parsing. void ComputeItemParserInfo(); |