ENH: do not show unititialized entries
This commit is contained in:
parent
f868fe3abd
commit
116f61c75c
|
@ -243,7 +243,8 @@ QCMakeCachePropertyList QCMake::properties() const
|
|||
{
|
||||
|
||||
if(i.GetType() == cmCacheManager::INTERNAL ||
|
||||
i.GetType() == cmCacheManager::STATIC)
|
||||
i.GetType() == cmCacheManager::STATIC ||
|
||||
i.GetType() == cmCacheManager::UNINITIALIZED)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue