mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Added support for .hh and .hpp libraries
This commit is contained in:
@ -417,7 +417,7 @@ public class BaseNoGui {
|
|||||||
* within the header files at the top-level).
|
* within the header files at the top-level).
|
||||||
*/
|
*/
|
||||||
static public String[] headerListFromIncludePath(File path) throws IOException {
|
static public String[] headerListFromIncludePath(File path) throws IOException {
|
||||||
String[] list = path.list(new OnlyFilesWithExtension(".h"));
|
String[] list = path.list(new OnlyFilesWithExtension(".h", ".hh", ".hpp"));
|
||||||
if (list == null) {
|
if (list == null) {
|
||||||
throw new IOException();
|
throw new IOException();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user