diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-07 11:31:18 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-02-07 15:21:09 (GMT) |
commit | 4cf161a5e7af6f32d76263ac751600577e4d7bd3 (patch) | |
tree | 4f16ae20dcaefed56a3176fe5b49f1f173f00e9d | |
parent | 3a298c0bf4e3e86f4705b9255bf032cf70d5cadb (diff) | |
download | CMake-4cf161a5e7af6f32d76263ac751600577e4d7bd3.zip CMake-4cf161a5e7af6f32d76263ac751600577e4d7bd3.tar.gz CMake-4cf161a5e7af6f32d76263ac751600577e4d7bd3.tar.bz2 |
Fix determination of evaluating link libraries.
Added in commit 6fbe3ce4 (Exclude the LINK_LIBRARIES related properties
from INTERFACE evaluation., 2013-01-23)
-rw-r--r-- | Source/cmGeneratorExpressionDAGChecker.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGeneratorExpressionDAGChecker.cxx b/Source/cmGeneratorExpressionDAGChecker.cxx index b9069ef..0ac1a48 100644 --- a/Source/cmGeneratorExpressionDAGChecker.cxx +++ b/Source/cmGeneratorExpressionDAGChecker.cxx @@ -148,8 +148,8 @@ bool cmGeneratorExpressionDAGChecker::EvaluatingLinkLibraries() return (strcmp(prop, "LINK_LIBRARIES") == 0 || strcmp(prop, "LINK_INTERFACE_LIBRARIES") == 0 || strcmp(prop, "IMPORTED_LINK_INTERFACE_LIBRARIES") == 0 - || strncmp(prop, "LINK_INTERFACE_LIBRARIES_", 26) == 0 - || strncmp(prop, "IMPORTED_LINK_INTERFACE_LIBRARIES_", 35) == 0); + || strncmp(prop, "LINK_INTERFACE_LIBRARIES_", 25) == 0 + || strncmp(prop, "IMPORTED_LINK_INTERFACE_LIBRARIES_", 34) == 0); } //---------------------------------------------------------------------------- |