Files
xiuos/APP_Framework/lib/Makefile
wgzAIIT bad8dc0fc2 1、add support xiuos platform for ota
2、change Kconfig for mqtt and Modify variable name
3、change ota functions for support xiuos platform
2023-09-07 16:53:20 +08:00

26 lines
413 B
Makefile

# SRC_DIR := lvgl
SRC_DIR :=
ifeq ($(CONFIG_APP_SELECT_NEWLIB),y)
ifeq ($(CONFIG_SEPARATE_COMPILE),y)
SRC_DIR += app_newlib
endif
endif
ifeq ($(CONFIG_LIB_LV),y)
SRC_DIR += lvgl
endif
ifeq ($(CONFIG_LIB_USING_CJSON),y)
SRC_DIR += cJSON
endif
ifeq ($(CONFIG_LIB_USING_LORAWAN),y)
SRC_DIR += lorawan
endif
ifeq ($(CONFIG_LIB_USING_MQTT),y)
SRC_DIR += mqtt
endif
include $(KERNEL_ROOT)/compiler.mk