We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03c68e commit e2578e2Copy full SHA for e2578e2
io.sloeber.core/src/io/sloeber/core/tools/PdePreprocessor.java
@@ -358,7 +358,7 @@ private static String extendIncludedInoPartForFile(String existingIncludeCodePar
358
if (curResource.isLinked()) {
359
addLine = "#include \"" + curResource.getLocation() + "\"" + NEWLINE;
360
} else {
361
- addLine = "#include \"" + curResource.getName() + "\"" + NEWLINE;
+ addLine = "#include \"" + curResource.getProjectRelativePath().toString() + "\"" + NEWLINE;
362
}
363
// if the name of the ino/pde file matches the project put
364
// the file in front
0 commit comments