summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: d9c005da672b503384d0dfe93a8eb2e39fc6215a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)