diff options
Diffstat (limited to 'Source/cmSourceFilesCommand.cxx')
-rw-r--r-- | Source/cmSourceFilesCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmSourceFilesCommand.cxx b/Source/cmSourceFilesCommand.cxx index 51e6fd1..1bec9a4 100644 --- a/Source/cmSourceFilesCommand.cxx +++ b/Source/cmSourceFilesCommand.cxx @@ -26,10 +26,10 @@ bool cmSourceFilesCommand::Invoke(std::vector<std::string>& args) for(std::vector<std::string>::iterator i = (args.begin() + 1); i != args.end(); ++i) { - cmClassFile file; - file.m_AbstractClass = false; + cmSourceFile file; + file.SetIsAnAbstractClass(false); file.SetName((*i).c_str(), m_Makefile->GetCurrentDirectory()); - m_Makefile->AddClass(file, args[0].c_str()); + m_Makefile->AddSource(file, args[0].c_str()); } return true; } |