mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 11:05:57 +00:00
Removes some lines that appear to have been used for debug that are not needed Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
9 lines
230 B
CMake
9 lines
230 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(native_tty)
|
|
|
|
file(GLOB app_sources src/main.c)
|
|
target_sources(app PRIVATE ${app_sources})
|