posix: native: support native runner
This adds support of 'make run' to the native port allowing us to run applications natively on the host instead of qemu. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
c15d3c9126
commit
e32a656962
1 changed files with 6 additions and 0 deletions
6
cmake/emu/native.cmake
Normal file
6
cmake/emu/native.cmake
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
add_custom_target(run
|
||||||
|
COMMAND
|
||||||
|
${APPLICATION_BINARY_DIR}/zephyr/${KERNEL_ELF_NAME}
|
||||||
|
WORKING_DIRECTORY ${APPLICATION_BINARY_DIR}
|
||||||
|
USES_TERMINAL
|
||||||
|
)
|
Loading…
Add table
Add a link
Reference in a new issue