-
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
No dependencies when using ninja -t deps #2424
Comments
Note: if your Otherwise, you could try rebuilding |
Thanks @digit-google . Is there a way to pass the |
As far as I know, you will need to invoke Ninja directly. I suggest asking in the CMake forums / mailing list otherwise. |
Note that you can use |
Heya. Using ninja 1.11.1 on Linux + cmake to manage a C project.
I'm trying to use ninja to map which headers are used by source files for a given target. I generate my build.ninja rules using cmake with the ninja multi-config generator, and while
ninja -t inputs
works given my targets,ninja -t deps
outputs nothing - and if given a specific target, outputstest: deps not found
.My .ninja_deps file seems to be pretty big and populated, so I must be missing something basic. Is there any documentation specifically for the deps tool that could explain why I'm getting no output?
Thank you!
The text was updated successfully, but these errors were encountered: