The following samples: - boards/nrf91/nrfx - boards/nrf52/power_mgr are actually not specific to nRF91 and nRF52 Series SoCs, respectively, hence the current naming of the above board/ subdirectories may be misleading. Thus, use nrf/ directory for holding all nRF board specific samples that apply to several boards. Paths to the moved samples that are mentioned in their documentation are also updated accordingly. Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
8 lines
249 B
CMake
8 lines
249 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(nrf52_power_mgr)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|