Skip to content

Commit fd9cc00

Browse files
imxieyime-no-dev
authored andcommittedSep 3, 2017
Fix support for some arduino libraries which don't put source files under a src directory (espressif#605)
* fix support for some arduino libraries * no longer need line 1
1 parent a710896 commit fd9cc00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎component.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARDUINO_CORE_LIBS := $(patsubst $(COMPONENT_PATH)/%,%,$(wildcard $(COMPONENT_PATH)/libraries/*/src))
1+
ARDUINO_CORE_LIBS := $(patsubst $(COMPONENT_PATH)/%,%,$(sort $(dir $(wildcard $(COMPONENT_PATH)/libraries/*/*/))))
22

33
COMPONENT_ADD_INCLUDEDIRS := cores/esp32 variants/esp32 $(ARDUINO_CORE_LIBS)
44
COMPONENT_PRIV_INCLUDEDIRS := cores/esp32/libb64

0 commit comments

Comments
 (0)
Please sign in to comment.