mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 01:52:32 +00:00
To indicate the generated binary is executable on the host, add .exe extension to the generated ELF file. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
7 lines
152 B
CMake
7 lines
152 B
CMake
add_custom_target(run
|
|
COMMAND
|
|
${APPLICATION_BINARY_DIR}/zephyr/${KERNEL_EXE_NAME}
|
|
WORKING_DIRECTORY ${APPLICATION_BINARY_DIR}
|
|
USES_TERMINAL
|
|
)
|