From 819cc610321bafe52f11031a69516ed8582677f6 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Tue, 13 Aug 2024 15:07:59 +0200 Subject: [PATCH] remove explicit SDK path --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29520c3..ee8ec1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -fno-exceptions") # Initialise pico_sdk from installed location # (note this can come from environment, CMake cache etc) -set(PICO_SDK_PATH "/usr/share/pico-sdk") -#set(PICO_SDK_PATH "/home/martin/pico/pico-sdk") +#set(PICO_SDK_PATH "/usr/share/pico-sdk") # Pull in Raspberry Pi Pico SDK (must be before project) include("cmake/pico_sdk_import.cmake")