zephyr/tests/subsys/fs/fs_api/CMakeLists.txt
Meng xianglin 21638f054f test: fs: Test cases for file system interfaces
Focus on file system interfaces implemented in file system core,
not specific file system.

Signed-off-by: Meng xianglin <xianglinx.meng@intel.com>
2020-08-14 15:44:06 -04:00

9 lines
240 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(fs_api)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})