From ba43911a77242fa40b127b057f20d0c7656e6ad8 Mon Sep 17 00:00:00 2001 From: Marco Casaroli Date: Mon, 20 Nov 2023 13:12:23 +0000 Subject: [PATCH] libtest: add PRIVATE to CMakeLists.txt It looks like this word is needed for this build to work with cmake --- examples/libtest/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/libtest/CMakeLists.txt b/examples/libtest/CMakeLists.txt index 907f3ba5b..4458322ff 100644 --- a/examples/libtest/CMakeLists.txt +++ b/examples/libtest/CMakeLists.txt @@ -35,6 +35,6 @@ if(CONFIG_EXAMPLES_LIBTEST) endif() nuttx_add_library(libtest STATIC) - target_sources(libtest libtest.c) + target_sources(libtest PRIVATE libtest.c) endif()