1#Description: statically allocated file system for mflash; user_visible: False 2include_guard(GLOBAL) 3message("component_mflash_file component is included.") 4 5target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE 6 ${CMAKE_CURRENT_LIST_DIR}/mflash_file.c 7) 8 9target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC 10 ${CMAKE_CURRENT_LIST_DIR}/. 11) 12 13#OR Logic component 14if(CONFIG_USE_component_mflash_rt685) 15 include(component_mflash_rt685) 16endif() 17if(CONFIG_USE_component_mflash_mimxrt685audevk) 18 include(component_mflash_mimxrt685audevk) 19endif() 20 21