15 lines
322 B
CMake
15 lines
322 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2019 Nordic Semiconductor ASA
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(littlefs)
|
|
|
|
add_subdirectory(../src littlefs_test_bindir)
|
|
|
|
if(TEST)
|
|
target_compile_definitions(app PRIVATE
|
|
-DTEST_${TEST}
|
|
)
|
|
endif()
|