From 6c4a186a19c2c47bebfdf2e5b341a67ff1954cf0 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Fri, 24 Mar 2023 14:48:20 +0100 Subject: [PATCH] Added the new translation module to the project by updating the include paths + makefile --- src/W800_SDK_v1.00.10/Makefile | 1 + src/W800_SDK_v1.00.10/tools/w800/inc.mk | 1 + 2 files changed, 2 insertions(+) diff --git a/src/W800_SDK_v1.00.10/Makefile b/src/W800_SDK_v1.00.10/Makefile index e2f0bdd..4cf33c6 100644 --- a/src/W800_SDK_v1.00.10/Makefile +++ b/src/W800_SDK_v1.00.10/Makefile @@ -33,6 +33,7 @@ COMPONENTS_$(TARGET) = \ $(TOP_DIR)/app/libuser$(LIB_EXT) \ $(TOP_DIR)/app/app_drivers/libappdrivers$(LIB_EXT) \ $(TOP_DIR)/app/persistency/libpersistency$(LIB_EXT) \ + $(TOP_DIR)/app/translation/libtranslation$(LIB_EXT) \ $(TOP_DIR)/lvgl/liblvgl$(LIB_EXT) ifeq ($(USE_LIB), 0) diff --git a/src/W800_SDK_v1.00.10/tools/w800/inc.mk b/src/W800_SDK_v1.00.10/tools/w800/inc.mk index 9e1841b..b6e8437 100644 --- a/src/W800_SDK_v1.00.10/tools/w800/inc.mk +++ b/src/W800_SDK_v1.00.10/tools/w800/inc.mk @@ -49,6 +49,7 @@ INCLUDES += -I $(TOP_DIR)/app/app_drivers/mmc_sdio INCLUDES += -I $(TOP_DIR)/app/app_drivers/i2c INCLUDES += -I $(TOP_DIR)/app/app_drivers/watch_peripherals INCLUDES += -I $(TOP_DIR)/app/persistency +INCLUDES += -I $(TOP_DIR)/app/translation INCLUDES += -I $(TOP_DIR)/app/gfx INCLUDES += -I $(TOP_DIR)/app