Target compilation question #9620
Answered
by
eli-schwartz
mscofield0
asked this question in
Q&A
-
How do I prevent target B being compiled when compiling target A, when both target A and B depend on target C? The problem is that when I try compiling my |
Beta Was this translation helpful? Give feedback.
Answered by
eli-schwartz
Nov 23, 2021
Replies: 1 comment 1 reply
-
Basically, this is by design. But if you run specific tests using |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mscofield0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#1704
Basically, this is by design. But if you run specific tests using
meson test testname
it will only rebuild the explicit dependencies of that one test program -- ormeson test --no-rebuild
will assume you've taken care of building all test dependencies and not do so itself.