BUG: Initializing from parent should copy link directories as well.
This commit is contained in:
parent
289429cd00
commit
aa69a14495
|
@ -798,6 +798,9 @@ void cmMakefile::InitializeFromParent()
|
|||
// link libraries
|
||||
this->m_LinkLibraries = parent->m_LinkLibraries;
|
||||
|
||||
// link directories
|
||||
this->m_LinkDirectories = parent->m_LinkDirectories;
|
||||
|
||||
// the initial project name
|
||||
this->m_ProjectName = parent->m_ProjectName;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue