zephyr/tests/subsys/input/input_longpress/CMakeLists.txt
Fabio Baltieri 8bd0e13fc7 test: input: add tests for input_longpress
Add a testsuite for the input-longpress driver.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2023-03-24 13:48:28 +00:00

10 lines
233 B
CMake

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