diff options
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index b5900c4..e8593a1 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -4284,7 +4284,7 @@ bool cmTarget::ComputeLinkInterface(const char* config, LinkInterface& iface) bool canLinkModules = this->Makefile->NeedBackwardsCompatibility(2,2); if(!explicitLibraries && (this->GetType() == cmTarget::EXECUTABLE || - this->GetType() == cmTarget::MODULE_LIBRARY && !canLinkModules)) + (this->GetType() == cmTarget::MODULE_LIBRARY && !canLinkModules))) { return false; } |