zephyr/tests/drivers/input/kbd_matrix/CMakeLists.txt
Fabio Baltieri 8c83185f6e tests: add an kbd_matrix test suite
Add an initial test suite for the keyboard scanning input library.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2023-12-21 10:12:33 +00:00

12 lines
304 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_kbd_matrix)
target_include_directories(app PRIVATE ${ZEPHYR_BASE}/drivers/input)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})