CMake: Add support for Filesystem Greentea tests

The Filesystem Greentea tests can now be built with CMake
pull/14089/head
Hugues Kamba 2020-12-24 14:48:51 +00:00
parent 265aa4cc92
commit 61f2097223
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR)
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../../../.. CACHE INTERNAL "")
set(TEST_TARGET mbed-storage-filesystem-general_filesystem)
include(${MBED_PATH}/tools/cmake/mbed_greentea.cmake)
project(${TEST_TARGET})
mbed_greentea_cmake_macro(
TEST_NAME ${TEST_TARGET}
TEST_REQUIRED_LIBS
mbed-storage-littlefs
mbed-storage
mbed-storage-sd
)