Skip to content

Commit

Permalink
Use wildcard for core includes in IDF
Browse files Browse the repository at this point in the history
thanks @Curclamas for pointing it out :)
  • Loading branch information
me-no-dev committed Mar 1, 2017
1 parent f0fc28f commit 72ce040
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions component.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARDUINO_LIB_DIRS := libraries/WiFi/src libraries/SPI/src libraries/Wire/src libraries/Preferences/src libraries/SimpleBLE/src libraries/WiFiClientSecure/src
ARDUINO_CORE_LIBS := $(wildcard libraries/*/src)

COMPONENT_ADD_INCLUDEDIRS := cores/esp32 variants/esp32 $(ARDUINO_LIB_DIRS)
COMPONENT_ADD_INCLUDEDIRS := cores/esp32 variants/esp32 $(ARDUINO_CORE_LIBS)
COMPONENT_PRIV_INCLUDEDIRS := cores/esp32/libb64
COMPONENT_SRCDIRS := cores/esp32/libb64 cores/esp32 variants/esp32 $(ARDUINO_LIB_DIRS)
COMPONENT_SRCDIRS := cores/esp32/libb64 cores/esp32 variants/esp32 $(ARDUINO_CORE_LIBS)
CXXFLAGS += -fno-rtti

0 comments on commit 72ce040

Please sign in to comment.