From 41c688316889ac2edddfae09fbeaa52a2206a33c Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 13 Sep 2024 21:54:37 -0600 Subject: initial commit --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d9c005d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.13) + +set(PICO_SDK_PATH "${CMAKE_SOURCE_DIR}/3rd-party/pico-sdk") +include(pico_sdk_import.cmake) + +project(sbc_harness) + +pico_sdk_init() + +add_executable(hello_world hello_world.c) +target_link_libraries(hello_world pico_stdlib) +# create map/bin/hex/uf2 file in addition to ELF. +pico_add_extra_outputs(hello_world) -- cgit v1.2.3-2-g168b