mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 05:10:10 -05:00
ENH: major change, the cmMakefile now contains a master list of cmSourceFile objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc.
This commit is contained in:
@@ -51,10 +51,10 @@ bool cmVTKWrapPythonCommand::InitialPass(std::vector<std::string> const& args)
|
||||
this->SetError("bad source list passed to VTKWrapPythonCommand");
|
||||
return false;
|
||||
}
|
||||
for(std::vector<cmSourceFile>::iterator i = l->second.begin();
|
||||
for(std::vector<cmSourceFile*>::iterator i = l->second.begin();
|
||||
i != l->second.end(); i++)
|
||||
{
|
||||
cmSourceFile &curr = *i;
|
||||
cmSourceFile &curr = *(*i);
|
||||
// if we should wrap the class
|
||||
if (!curr.GetWrapExclude())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user