diff options
Diffstat (limited to 'Source/cmCreateTestSourceList.cxx')
-rw-r--r-- | Source/cmCreateTestSourceList.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCreateTestSourceList.cxx b/Source/cmCreateTestSourceList.cxx index 02071dd..89253e9 100644 --- a/Source/cmCreateTestSourceList.cxx +++ b/Source/cmCreateTestSourceList.cxx @@ -172,6 +172,7 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& args) // Create the source list cmSourceFile cfile; + cfile.GetProperties().SetCMakeInstance(this->Makefile->GetCMakeInstance()); std::string sourceListValue; cfile.SetProperty("ABSTRACT","0"); @@ -185,6 +186,8 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& args) for(i = testsBegin; i != tests.end(); ++i) { cmSourceFile icfile; + icfile.GetProperties(). + SetCMakeInstance(this->Makefile->GetCMakeInstance()); icfile.SetProperty("ABSTRACT","0"); icfile.SetName(i->c_str(), this->Makefile->GetCurrentDirectory(), |