-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multi-inputs tool #2527
Add multi-inputs tool #2527
Conversation
Replaces PR #2524 |
39274e5
to
c7a5b1e
Compare
15db702
to
a4b6b5e
Compare
Thanks a lot, apart from my last documentation nit, this looks good to me. @jhasse, what do you think? |
a4b6b5e
to
9dc69f4
Compare
Any progress on this? (looking forward to having this in the next release ;-) |
doc should mention Available since Ninja 1.13. |
The 'multi-inputs' option will list all <target> + <inputs> for the given targets. Run: ninja -t multi-inputs <target1> <target2> <target3> Ninja will then output: <target1> <input_x> <target1> <input_y> <target2> <input_x> <target2> <input_z> <target3> <input_y>
9dc69f4
to
beabef0
Compare
Of course :-) Fixed and pushed. |
The 'multi-inputs' option will list all + for the given targets.
Run:
ninja -t multi-inputs target1 target2 target3
Ninja will then output:
target1 input_x
target1 input_y
target2 input_x
target2 input_z
target3 input_y