From 747991d52883ee51e010d44a3c95cf2b7694d5a5 Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 5 Jan 2024 08:29:46 +0000 Subject: [PATCH] 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 --- samples/drivers/uart/native_tty/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/samples/drivers/uart/native_tty/CMakeLists.txt b/samples/drivers/uart/native_tty/CMakeLists.txt index c0fa477a106..528ed22fc56 100644 --- a/samples/drivers/uart/native_tty/CMakeLists.txt +++ b/samples/drivers/uart/native_tty/CMakeLists.txt @@ -4,8 +4,5 @@ cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(native_tty) -set(CMAKE_EXPORT_COMPILE_COMMANDS on) -zephyr_compile_options(-fdiagnostics-color=always) - file(GLOB app_sources src/main.c) target_sources(app PRIVATE ${app_sources})