diff options
author | Brad King <brad.king@kitware.com> | 2012-10-26 12:25:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-26 12:28:16 (GMT) |
commit | ed9763136acdb8594e4b85ab7b2e4e2828d8b775 (patch) | |
tree | 4550665b1317c9a5c314fc5270344cf37747098b /Source/cmComputeLinkInformation.h | |
parent | 259cff94ff81f7b95b7375905fe0e0a292f70dda (diff) | |
download | CMake-ed9763136acdb8594e4b85ab7b2e4e2828d8b775.zip CMake-ed9763136acdb8594e4b85ab7b2e4e2828d8b775.tar.gz CMake-ed9763136acdb8594e4b85ab7b2e4e2828d8b775.tar.bz2 |
Optionally skip link dependencies on shared library files
Add target property LINK_DEPENDS_NO_SHARED and initialization variable
CMAKE_LINK_DEPENDS_NO_SHARED to enable this behavior.
Suggested-by: Leif Walsh <leif.walsh@gmail.com>
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index f60f8d3..e0078af 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -82,6 +82,7 @@ private: // Configuration information. const char* Config; const char* LinkLanguage; + bool LinkDependsNoShared; // Modes for dealing with dependent shared libraries. enum SharedDepMode |