From 86afa6d1823def2783281fa88d2f278794f22c33 Mon Sep 17 00:00:00 2001 From: wangjianyu3 Date: Mon, 20 Jul 2026 18:43:12 +0800 Subject: [PATCH] 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 --- 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()