rpi_micro_examples/pdu/CMakeLists.txt

15 lines
184 B
Text
Raw Permalink 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
)
target_link_libraries(pdu pico_stdlib)