BUG: COMPILE_DEFINITIONS directory property needs to be inherited from parent when a directory is created.
This commit is contained in:
parent
433099ecdd
commit
7f589c9f23
|
@ -1134,6 +1134,10 @@ void cmMakefile::InitializeFromParent()
|
|||
// define flags
|
||||
this->DefineFlags = parent->DefineFlags;
|
||||
|
||||
// compile definitions property
|
||||
this->SetProperty("COMPILE_DEFINITIONS",
|
||||
parent->GetProperty("COMPILE_DEFINITIONS"));
|
||||
|
||||
// link libraries
|
||||
this->LinkLibraries = parent->LinkLibraries;
|
||||
|
||||
|
|
Loading…
Reference in New Issue