1# SPDX-License-Identifier: Apache-2.0 2cmake_minimum_required(VERSION 3.20.0) 3find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 4 5project(persistent_key) 6 7target_sources(app PRIVATE src/main.c) 8