At my workplace, there is a specific projects which has several dependencies before we can compile it. I'll describe it in more simpliar scenario:
Let's say we have projects : A,B,C,D
Regarding A,B, when compiling each one of these projects, we'll get a lib file ( static library ). Let's say that in order to compile project C, we need to compile project A,B. After we compile project C, it serves as a static library for project D. Then we compile project D to run the application.
We know that we have professional automated tools but my managers wants to compile these dependencies at once using MSBuild.
The projects are written in C++ and the only reference I've found in MSDN is for C# or VB.
What can I do ????????? Please help :)