mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 23:30:35 -06:00
Drop if(...) check because condition is always true
GetLocation returns std::string::c_str() which is never NULL
This commit is contained in:
committed by
Brad King
parent
6a1c5a3569
commit
4f6fd961da
@@ -1902,15 +1902,8 @@ bool cmLocalGenerator::GetRealDependency(const char* inName,
|
||||
case cmTarget::SHARED_LIBRARY:
|
||||
case cmTarget::MODULE_LIBRARY:
|
||||
case cmTarget::UNKNOWN_LIBRARY:
|
||||
{
|
||||
// Get the location of the target's output file and depend on it.
|
||||
if(const char* location = target->GetLocation(config))
|
||||
{
|
||||
dep = location;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
break;
|
||||
dep = target->GetLocation(config);
|
||||
return true;
|
||||
case cmTarget::UTILITY:
|
||||
case cmTarget::GLOBAL_TARGET:
|
||||
// A utility target has no file on which to depend. This was listed
|
||||
|
||||
Reference in New Issue
Block a user