3578a9e646
Add test for `display_read()` and `display_write()` api. Note: The CI environment has no display device, which makes it fail the tests. So, I make this test case `build_only`. But it can run in a display device available environment. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
10 lines
237 B
CMake
10 lines
237 B
CMake
# Copyright 2024 (c) TOKITA Hiroshi
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(display_read_write)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|