diff options
Diffstat (limited to 'Source/cmVTKWrapPythonCommand.cxx')
-rw-r--r-- | Source/cmVTKWrapPythonCommand.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmVTKWrapPythonCommand.cxx b/Source/cmVTKWrapPythonCommand.cxx index fb2653e..9b3ea35 100644 --- a/Source/cmVTKWrapPythonCommand.cxx +++ b/Source/cmVTKWrapPythonCommand.cxx @@ -70,6 +70,8 @@ bool cmVTKWrapPythonCommand::InitialPass(std::vector<std::string> const& if (!curr || !curr->GetPropertyAsBool("WRAP_EXCLUDE")) { cmSourceFile file; + file.GetProperties().SetCMakeInstance + (this->Makefile->GetCMakeInstance()); if (curr) { file.SetProperty("ABSTRACT",curr->GetProperty("ABSTRACT")); @@ -90,6 +92,8 @@ bool cmVTKWrapPythonCommand::InitialPass(std::vector<std::string> const& } cmSourceFile cfile; + cfile.GetProperties().SetCMakeInstance + (this->Makefile->GetCMakeInstance()); cfile.SetProperty("ABSTRACT","0"); this->CreateInitFile(res); cfile.SetName(initName.c_str(), this->Makefile->GetCurrentOutputDirectory(), |