mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #14089 from hugueskamba/hk_cmake_greentea_filesystem
CMake: Add support for Filesystem Greentea testspull/14143/head
commit
2255408f45
|
@ -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
|
||||||
|
)
|
Loading…
Reference in New Issue