From 785233402f82c8c3de3a0ff4edfa3dcc5a4e1c0a Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Tue, 11 May 2021 18:19:05 -0500 Subject: [PATCH] fix pico_promote_common_scope_vars --- pico_sdk_init.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico_sdk_init.cmake b/pico_sdk_init.cmake index a21e56b26..c291a504d 100644 --- a/pico_sdk_init.cmake +++ b/pico_sdk_init.cmake @@ -63,7 +63,7 @@ if (NOT TARGET _pico_sdk_pre_init_marker) macro(pico_promote_common_scope_vars) set(PICO_INCLUDE_DIRS ${PICO_INCLUDE_DIRS} PARENT_SCOPE) - set(PICO_SDK_POST_LIST_DIRS ${PICO_SDK_PRE_LIST_FILES} PARENT_SCOPE) + set(PICO_SDK_POST_LIST_DIRS ${PICO_SDK_POST_LIST_DIRS} PARENT_SCOPE) set(PICO_SDK_POST_LIST_FILES ${PICO_SDK_POST_LIST_FILES} PARENT_SCOPE) set(PICO_CONFIG_HEADER_FILES ${PICO_CONFIG_HEADER_FILES} PARENT_SCOPE) set(PICO_RP2040_CONFIG_HEADER_FILES ${PICO_RP2040_CONFIG_HEADER_FILES} PARENT_SCOPE)