zephyr/samples/sensor/soc_voltage/CMakeLists.txt
Kenneth J. Miller 529bdf2f85 samples: sensor: Add generic voltage driver example
Add basic sample to demonstrate voltage driver measurements.

Signed-off-by: Kenneth J. Miller <ken@miller.ec>
2023-05-23 08:54:20 +02:00

9 lines
228 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(soc_voltage)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})