From a85c86ed70ea82a88193567f4905535ced7ca6a8 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Thu, 17 Dec 2020 22:01:12 -0800 Subject: [PATCH] Teach the makefile builder to look for Kaleidoscople plugin libraries inside the plugins directory --- etc/makefiles/sketch.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/makefiles/sketch.mk b/etc/makefiles/sketch.mk index ecd4ef99..2d47d839 100644 --- a/etc/makefiles/sketch.mk +++ b/etc/makefiles/sketch.mk @@ -177,6 +177,7 @@ compile: $(QUIET) install -d "${OUTPUT_PATH}" $(QUIET) $(ARDUINO_CLI) compile --fqbn "${FQBN}" ${ARDUINO_VERBOSE} --warnings all ${ccache_wrapper_property} ${local_cflags_property} \ --libraries "${KALEIDOSCOPE_PLATFORM_LIB_DIR}" \ + --libraries "${KALEIDOSCOPE_DIR}/plugins/" \ --build-path "${BUILD_PATH}" \ --output-dir "${OUTPUT_PATH}" \ --build-cache-path "${CORE_CACHE_PATH}" \