1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-01 03:47:23 +03:00

Moved libraries folder inside platform folder. Now libraries and examples are searched per board/platform

This commit is contained in:
Cristian Maglie
2012-01-04 15:14:51 +01:00
parent 387e6b63c7
commit 57b8713cab
127 changed files with 191 additions and 192 deletions

View File

@ -28,7 +28,6 @@ import static processing.app.I18n._;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FilenameFilter;
import java.io.IOException;
import java.text.MessageFormat;
import java.util.ArrayList;
@ -120,7 +119,6 @@ public class Compiler implements MessageConsumer {
re.hideStackTrace();
throw re;
}
File coreFolder;
if (!core.contains(":")) {
TargetPlatform t = Base.getTargetPlatform();
@ -538,21 +536,6 @@ public class Compiler implements MessageConsumer {
throw new RunnerException("Couldn't create: " + folder);
}
/**
* Given a folder, return a list of the header files in that folder (but not
* the header files in its sub-folders, as those should be included from
* within the header files at the top-level).
*/
static public String[] headerListFromIncludePath(String path) {
FilenameFilter onlyHFiles = new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.endsWith(".h");
}
};
return (new File(path)).list(onlyHFiles);
}
static public List<File> findFilesInFolder(File folder, String extension,
boolean recurse) {
List<File> files = new ArrayList<File>();