mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 15:10:20 -06:00
many fixes and cleanup and features
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user