libtest: add PRIVATE to CMakeLists.txt

It looks like this word is needed for this build to work with cmake
This commit is contained in:
Marco Casaroli 2023-11-20 13:12:23 +00:00 committed by Xiang Xiao
parent 27588be53e
commit ba43911a77

View File

@ -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()