nvs_flash: build nvs_encr.cpp only if relevant config option is enabled

This commit is contained in:
Mahavir Jain 2019-11-15 14:23:00 +05:30
parent ecf09382da
commit f53f450380
2 changed files with 16 additions and 8 deletions

View File

@ -1,10 +1,14 @@
idf_component_register(SRCS "src/nvs_api.cpp"
"src/nvs_encr.cpp"
"src/nvs_item_hash_list.cpp"
"src/nvs_ops.cpp"
"src/nvs_page.cpp"
"src/nvs_pagemanager.cpp"
"src/nvs_storage.cpp"
"src/nvs_types.cpp"
set(srcs "src/nvs_api.cpp"
"src/nvs_item_hash_list.cpp"
"src/nvs_ops.cpp"
"src/nvs_page.cpp"
"src/nvs_pagemanager.cpp"
"src/nvs_storage.cpp"
"src/nvs_types.cpp")
if(CONFIG_NVS_ENCRYPTION)
list(APPEND srcs "src/nvs_encr.cpp")
endif()
idf_component_register(SRCS "${srcs}"
REQUIRES spi_flash mbedtls
INCLUDE_DIRS include)

View File

@ -5,3 +5,7 @@
COMPONENT_ADD_INCLUDEDIRS := include
COMPONENT_SRCDIRS := src
ifndef CONFIG_NVS_ENCRYPTION
COMPONENT_OBJEXCLUDE := src/nvs_encr.o
endif