2020-07-20 17:10:35 +00:00
|
|
|
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
add_subdirectory(fat)
|
|
|
|
add_subdirectory(littlefs)
|
|
|
|
add_subdirectory(littlefsv2)
|
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
target_include_directories(mbed-storage-filesystem
|
2020-10-12 11:35:19 +00:00
|
|
|
INTERFACE
|
|
|
|
.
|
|
|
|
./include
|
|
|
|
./include/filesystem
|
2020-07-20 17:10:35 +00:00
|
|
|
)
|
|
|
|
|
2020-10-22 16:00:21 +00:00
|
|
|
target_sources(mbed-storage-filesystem
|
2020-10-12 11:35:19 +00:00
|
|
|
INTERFACE
|
2020-07-22 17:03:35 +00:00
|
|
|
source/Dir.cpp
|
|
|
|
source/File.cpp
|
|
|
|
source/FileSystem.cpp
|
2020-07-20 17:10:35 +00:00
|
|
|
)
|
2020-11-16 14:27:26 +00:00
|
|
|
|
|
|
|
target_compile_definitions(mbed-storage
|
|
|
|
INTERFACE
|
|
|
|
MBED_CONF_FILESYSTEM_PRESENT=1
|
|
|
|
)
|