Skip to content
Snippets Groups Projects
Commit b7e56fc9 authored by Peter Wägemann's avatar Peter Wägemann
Browse files

Add target sim, which is an alias for run

parent 62186612
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,14 @@ add_custom_target(run
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
)
# make sim as alias for make run
add_custom_target(sim
DEPENDS ${ISOFILE} ${TGT}
COMMAND echo "Running ${ISOFILE}..."
COMMAND ${STARTUP_SCRIPTS}/qrun.sh
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
)
add_custom_target( ddd
# Start Qemu in Debug mode.
DEPENDS ${TGT}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment