From 4b5828ad3348621374415b7b501c55181fd22634 Mon Sep 17 00:00:00 2001 From: Abdullah Bagyapan Date: Fri, 19 Apr 2024 21:18:18 +0300 Subject: [PATCH] feat(uart):add CMake file --- uart/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 uart/CMakeLists.txt diff --git a/uart/CMakeLists.txt b/uart/CMakeLists.txt new file mode 100644 index 0000000..0478337 --- /dev/null +++ b/uart/CMakeLists.txt @@ -0,0 +1,5 @@ +file(GLOB FILES *.c *.h) + +add_library(uart ${FILES}) + +target_link_libraries(uart pico_stdlib)