This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new bcf655e19 cmake:builtin register support NONE srcs target
bcf655e19 is described below
commit bcf655e196911c50034dc2cbc78401960f09a796
Author: xuxin19 <[email protected]>
AuthorDate: Tue May 28 16:52:14 2024 +0800
cmake:builtin register support NONE srcs target
Signed-off-by: xuxin19 <[email protected]>
---
builtin/CMakeLists.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/builtin/CMakeLists.txt b/builtin/CMakeLists.txt
index e8be798e7..3d029b175 100644
--- a/builtin/CMakeLists.txt
+++ b/builtin/CMakeLists.txt
@@ -24,6 +24,8 @@ if(CONFIG_BUILTIN)
# generate registry
get_property(nuttx_app_libs GLOBAL PROPERTY NUTTX_APPS_LIBRARIES)
+ get_property(only_registers GLOBAL PROPERTY NUTTX_APPS_ONLY_REGISTER)
+ list(APPEND nuttx_app_libs ${only_registers})
set(builtin_list_string)
set(builtin_proto_string)
foreach(module ${nuttx_app_libs})