mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
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 <wangjianyu3@xiaomi.com>
This commit is contained in:
parent
d273af4834
commit
86afa6d182
1 changed files with 9 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue