I'm attempting to configure a C++ project that uses several shared static libraries (Artifacts) to build a single executable. The configuration looks something like below:
Library 1--> |
| -> Final executable -> Deployment Project
Library 2 --> |
The two libraries are shared between multiple plans so they're built and tested in their own plans then downloaded by the plan for the final executable.
What I'm searching for, is which builds did Libraries 1 and 2 come from to compose the final artifacts that are getting sent to the deployment project. This would allow me to know all the commits composing the final .exe.
I've been searching for how to do this for hours.
Many thanks!