Re: CVS update: MODIFIED: project, CompilerOutResource.java ...
Svata Dedic <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.projects.devel |
|---|---|
| Organization | CollabNet Hosting |
| Message-ID | <[email protected]> |
May I ask why ? [email protected] wrote: > Log: > Source path used even if crosscompilation is turn on. > > > CompilerOutResource(ProjectMember t, Configuration cfg, BuildOptions opts) { > super(false); > @@ -89,9 +89,12 @@ > */ > void updateContent() { > if (!opts.hasOutputFolder()) { > + delegates = new PathContent[1]; > delegates[0] = ProjectPath.find(target, ProjectPath.PATH_SOURCE); > } else { > + delegates = new PathContent[2]; > delegates[0] = getOutFolderContent(); > + delegates[1] = ProjectPath.find(target, ProjectPath.PATH_SOURCE); > } > contentControl.setDelegates(delegates, null); > } >