From a4168c0ccd865a1dea74d2c478dc21eec948dc53 Mon Sep 17 00:00:00 2001 From: GDV0 Date: Wed, 18 Dec 2013 00:07:11 +0100 Subject: [PATCH] Update Compiler.java Add Build path in the Include paths list to fix issue #1734 --- app/src/processing/app/debug/Compiler.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index a715d59a408..d34d7001fb1 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -118,6 +118,7 @@ public boolean compile(Sketch sketch, sketch.setCompilingProgress(20); List includePaths = new ArrayList(); includePaths.add(corePath); + includePaths.add(buildPath); if (variantPath != null) includePaths.add(variantPath); for (File file : sketch.getImportedLibraries()) { includePaths.add(file.getPath());