mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +00:00
CMake: Add 'setup-and-run' target to perform all prereqs and run the image
Running 'ninja install && ninja image && ninja run` is kind of annoying. I got tired, and came up with this instead, which does the right thing and I don't have to type out the incantation.
This commit is contained in:
parent
e8ff61e64b
commit
566b916364
1 changed files with 12 additions and 0 deletions
|
@ -30,6 +30,18 @@ add_custom_target(run
|
|||
USES_TERMINAL
|
||||
)
|
||||
|
||||
# This can currently only be implemented by ordered commands
|
||||
# as cmake doesn't support inter dependency ordering, and we
|
||||
# would like to avoid inject dependencies on the existing
|
||||
# custom commands to allow people to run commands adhoc with
|
||||
# out forcing re-builds when they might not want them.
|
||||
add_custom_target(setup-and-run
|
||||
COMMAND ${CMAKE_MAKE_PROGRAM} install
|
||||
COMMAND ${CMAKE_MAKE_PROGRAM} image
|
||||
COMMAND ${CMAKE_MAKE_PROGRAM} run
|
||||
USES_TERMINAL
|
||||
)
|
||||
|
||||
add_custom_target(image
|
||||
DEPENDS qemu-image
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue