summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 3334714353dda06442f937aff8b41ff65e232312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
pico_set_program_url(hello_world "https://git.lukeshu.com/sbc-harness")