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 00154fd81 apps/system/composite: change cmake build name to conn and
disconn
00154fd81 is described below
commit 00154fd818d6e12cf758be21555458f703d514a9
Author: yangsong8 <[email protected]>
AuthorDate: Tue Jun 3 21:13:37 2025 +0800
apps/system/composite: change cmake build name to conn and disconn
The executable file compiled by cmake has the same filename as
that compiled by make.
Signed-off-by: yangsong8 <[email protected]>
---
system/composite/CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/system/composite/CMakeLists.txt b/system/composite/CMakeLists.txt
index 9ca2f72ca..d88246363 100644
--- a/system/composite/CMakeLists.txt
+++ b/system/composite/CMakeLists.txt
@@ -21,5 +21,6 @@
#
##############################################################################
if(CONFIG_SYSTEM_COMPOSITE)
- nuttx_add_application(NAME composite SRCS composite_main.c)
+ nuttx_add_application(NAME conn SRCS composite_main.c)
+ nuttx_add_application(NAME disconn)
endif()