rpi_micro_examples/CMakeLists.txt

17 lines
206 B
Text
Raw Normal View History

2021-10-31 15:26:17 +00:00
cmake_minimum_required(VERSION 3.13)
include(pico_sdk_import.cmake)
project(lanthanide_pdu)
pico_sdk_init()
add_executable(pdu
pdu.c
uart.h
uart.c
)
target_link_libraries(pdu pico_stdlib)