mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
4592ff2d5a
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
|
|
)
|