mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 13:05:21 +00:00
Simple sample to test touch panel drivers. Outputs a message to the console on every touch event. Signed-off-by: Mark Olsson <mark@markolsson.se>
9 lines
239 B
CMake
9 lines
239 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(kscan)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|