zephyr/tests/subsys/settings/functional/file/CMakeLists.txt
Andrzej Puzdrowski ccf8c547d0 settings: API for get storage instance used
Added API function +int settings_storage_get(void **storage)
which allows to get storage instance used by the
settings backed to store its records.

Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
2022-08-02 15:15:10 +02:00

20 lines
468 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(functional_file)
FILE(GLOB app_sources ../src/*.c)
target_sources(app PRIVATE ${app_sources})
target_sources(app PRIVATE settings_test_fs.c)
zephyr_include_directories(
${ZEPHYR_BASE}/subsys/settings/include
${ZEPHYR_BASE}/subsys/settings/src
)
if(TEST)
target_compile_definitions(app PRIVATE
-DTEST_${TEST}
)
endif()