zephyr/samples/basic/custom_dts_binding/CMakeLists.txt
Martin Jäger aef8419e9e samples: basic: custom devicetree binding demo
This sample shows how to define a custom devicetree binding to use
GPIO pins for a specific purpose.

Signed-off-by: Martin Jäger <martin@libre.solar>
2023-01-19 10:16:34 +01:00

9 lines
240 B
CMake

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