diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
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) |