From 747ce32a8e54ac15b52071df8edafcdbaf6d8e25 Mon Sep 17 00:00:00 2001 From: Michael Rubanov Date: Fri, 25 Nov 2022 18:13:16 +0200 Subject: [PATCH] seems like a typo ? ) (#49) missing $ char in `${CMAKE_BINARY_DIR}` --- post_init.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post_init.cmake b/post_init.cmake index 668535a..1f1ad68 100644 --- a/post_init.cmake +++ b/post_init.cmake @@ -9,6 +9,6 @@ pico_add_platform_library(pico_extras_included) add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src ${CMAKE_BINARY_DIR}/pico_extras/src) if (PICO_EXTRAS_TESTS_ENABLED OR PICO_EXTRAS_TOP_LEVEL_PROJECT) - add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/test {CMAKE_BINARY_DIR}/pico_extras/test) + add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/test ${CMAKE_BINARY_DIR}/pico_extras/test) endif ()