samples: drivers: uart: native_tty: Remove superfluous cmake lines

Removes some lines that appear to have been used for debug that
are not needed

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
Jamie McCrae 2024-01-05 08:29:46 +00:00 committed by Alberto Escolar
commit 747991d528

View file

@ -4,8 +4,5 @@ cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(native_tty) project(native_tty)
set(CMAKE_EXPORT_COMPILE_COMMANDS on)
zephyr_compile_options(-fdiagnostics-color=always)
file(GLOB app_sources src/main.c) file(GLOB app_sources src/main.c)
target_sources(app PRIVATE ${app_sources}) target_sources(app PRIVATE ${app_sources})