mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06: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:
@@ -50,10 +50,10 @@ bool cmVTKWrapJavaCommand::InitialPass(std::vector<std::string> const& args)
|
||||
this->SetError("bad source list passed to VTKWrapJavaCommand");
|
||||
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