Newer
Older
mbed-os / storage / filesystem / littlefsv2 / CMakeLists.txt
@Hugues Kamba Hugues Kamba on 6 Nov 2020 515 bytes CMake: Rename CMake targets
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

target_include_directories(mbed-storage-littlefs-v2
    INTERFACE
        .
        ./include
        ./include/littlefsv2
        ./littlefs
)

target_sources(mbed-storage-littlefs-v2
    INTERFACE
        source/LittleFileSystem2.cpp

        littlefs/lfs2.c
        littlefs/lfs2_util.c
)

target_link_libraries(mbed-storage-littlefs-v2
    INTERFACE
        mbed-storage-blockdevice
        mbed-storage-filesystem
)