mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Fix for [Bug 182309] The managed build does not work for source files in source folders.
This commit is contained in:
parent
6af8afe7af
commit
61c00b3d3b
1 changed files with 4 additions and 0 deletions
|
@ -504,6 +504,10 @@ public class CDataUtil {
|
|||
|
||||
public static boolean isExcluded(IPath path, ICSourceEntry entry){
|
||||
IPath entryPath = new Path(entry.getName());
|
||||
|
||||
if(path.isPrefixOf(entryPath))
|
||||
return false;
|
||||
|
||||
if(!entryPath.isPrefixOf(path))
|
||||
return true;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue