From cb59a9492dfd6bc7cddfa41ba9658e4ae1f0ba59 Mon Sep 17 00:00:00 2001 From: sxy Date: Wed, 17 Aug 2022 20:57:55 +0800 Subject: [PATCH] bugfix: Add src/include path in component.mk --- component.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/component.mk b/component.mk index f6a08f3..171ce9c 100644 --- a/component.mk +++ b/component.mk @@ -1,5 +1,6 @@ COMPONENT_ADD_INCLUDEDIRS := include/$(IDF_TARGET) \ esp-tts/esp_tts_chinese/include \ + src/include \ COMPONENT_SRCDIRS := src @@ -11,4 +12,4 @@ LIBS := $(patsubst lib%.a,-l%,$(LIB_FILES)) COMPONENT_ADD_LDFLAGS += -L$(COMPONENT_PATH)/lib/$(IDF_TARGET) \ -L$(COMPONENT_PATH)/esp-tts \ - $(LIBS) \ No newline at end of file + $(LIBS)