JianyuWang0623 opened a new pull request, #3655: URL: https://github.com/apache/nuttx-apps/pull/3655
*Note: Please adhere to [Contributing Guidelines](https://github.com/apache/nuttx/blob/master/CONTRIBUTING.md).* ## Summary The Makefile build of `netutils/rexecd` already forwards the configured task priority and stack size via the `PRIORITY` / `STACKSIZE` variables, but the CMake build did not. As a result, `CONFIG_NETUTILS_REXECD_PRIORITY` and `CONFIG_NETUTILS_REXECD_STACKSIZE` had no effect when building with CMake. This change updates `netutils/rexecd/CMakeLists.txt` to pass `STACKSIZE` (`${CONFIG_NETUTILS_REXECD_STACKSIZE}`) and `PRIORITY` (`${CONFIG_NETUTILS_REXECD_PRIORITY}`) to `nuttx_add_application()`, aligning the CMake build behavior with the existing Makefile build. ## Impact - CMake build only; no new dependencies. ## Testing - Before change: CMake build ignored the priority/stacksize config values. - After change: CMake build uses the configured priority/stacksize, consistent with the Makefile build. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
