Skip to content

Commit 0e9e0a6

Browse files
author
jan
committed
Exclude library Applications folders from the build #1701
1 parent 2ee6794 commit 0e9e0a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

io.sloeber.core/src/io/sloeber/core/api/SloeberProject.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ public void run(IProgressMonitor internalMonitor) throws CoreException {
447447
IPath path = newProjectHandle.getFolder(rootCodeFolder).getFullPath();
448448
newSourceEntries[0] = new CSourceEntry(path, null, ICSettingEntry.RESOLVED);
449449
}
450-
IPath excludes[] = new IPath[8];
450+
IPath excludes[] = new IPath[9];
451451
excludes[0] = IPath.fromOSString("**/*.ino"); //$NON-NLS-1$
452452
excludes[1] = IPath.fromOSString("libraries/?*/**/doc*/**"); //$NON-NLS-1$
453453
excludes[2] = IPath.fromOSString("libraries/?*/**/?xamples/**"); //$NON-NLS-1$
@@ -456,6 +456,8 @@ public void run(IProgressMonitor internalMonitor) throws CoreException {
456456
excludes[5] = IPath.fromOSString("libraries/?*/**/third-party/**"); //$NON-NLS-1$
457457
excludes[6] = IPath.fromOSString("libraries/**/._*"); //$NON-NLS-1$
458458
excludes[7] = IPath.fromOSString("libraries/?*/utility/*/*"); //$NON-NLS-1$
459+
excludes[8] = IPath.fromOSString("libraries/?*/Applications/**"); //$NON-NLS-1$
460+
459461

460462
/*
461463
* CDT currently causes issues with ${ConfigName]

0 commit comments

Comments
 (0)