zephyr/samples/boards/google_twinkie_v2_pda/CMakeLists.txt
Jason Yuan ad555d08d8 samples: boards: firmware for Twinkie V2
sample firmware for Twinkie V2 that toggles the LED based on charging
status.

Signed-off-by: Jason Yuan <jasonyuan@google.com>
2023-07-25 09:08:19 +02:00

10 lines
235 B
CMake

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