This is an automated email from the ASF dual-hosted git repository.

acassis 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 86afa6d18 netutils/rexecd: forward PRIORITY/STACKSIZE config in CMake 
build
86afa6d18 is described below

commit 86afa6d1823def2783281fa88d2f278794f22c33
Author: wangjianyu3 <[email protected]>
AuthorDate: Mon Jul 20 18:43:12 2026 +0800

    netutils/rexecd: forward PRIORITY/STACKSIZE config in CMake build
    
    The Makefile build already forwards both values via PRIORITY /
    STACKSIZE.  Align the CMake build with the Makefile so that
    CONFIG_NETUTILS_REXECD_PRIORITY and CONFIG_NETUTILS_REXECD_STACKSIZE
    take effect under CMake as well.
    
    Assisted-by: GitHubCopilot:claude-4.8-opus
    Signed-off-by: wangjianyu3 <[email protected]>
---
 netutils/rexecd/CMakeLists.txt | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/netutils/rexecd/CMakeLists.txt b/netutils/rexecd/CMakeLists.txt
index 0da40f5bd..4cde43028 100644
--- a/netutils/rexecd/CMakeLists.txt
+++ b/netutils/rexecd/CMakeLists.txt
@@ -21,5 +21,13 @@
 # 
##############################################################################
 
 if(CONFIG_NETUTILS_REXECD)
-  nuttx_add_application(NAME rexecd SRCS rexecd.c)
+  nuttx_add_application(
+    NAME
+    rexecd
+    SRCS
+    rexecd.c
+    STACKSIZE
+    ${CONFIG_NETUTILS_REXECD_STACKSIZE}
+    PRIORITY
+    ${CONFIG_NETUTILS_REXECD_PRIORITY})
 endif()

Reply via email to