2019-09-09 18:40:02 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-08-10 20:44:56 +08:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2020-05-29 08:58:50 +08:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2019-09-09 18:40:02 +08:00
|
|
|
project(test_settings_nvs_raw)
|
|
|
|
|
2022-07-29 18:52:44 +08:00
|
|
|
add_subdirectory(./src nvs_test_bindir)
|
2019-09-09 18:40:02 +08:00
|
|
|
|
|
|
|
if(TEST)
|
|
|
|
target_compile_definitions(app PRIVATE
|
|
|
|
-DTEST_${TEST}
|
|
|
|
)
|
|
|
|
endif()
|