Hi,
I've a three static library projects under a VS2012 solution and let us consider A, B, C are the three static libraries.
Library 'A' is dependent on Library 'B'
Library 'B' is dependent on Library 'C'
Ideally when I try to rebuild the library 'A' it should clean and build library C, then library B and then library A. The build happens fine, but when I see the output file directory where the libraries are intended to get created I just see the library 'A.lib' and I'm not able to find 'B.lib' and 'C.lib'.
On the other hand, if I try to just build library 'A', it builds library 'C' first and then builds library 'B' and eventually builds library 'A' and in this case I'm able to see all the three libraries 'A.lib', 'B.lib' and 'C.lib' in the targeted output file directory.
I'm using VS2012 Express Edition as the development environment. I've correctly set the 'Project Dependency' hierarchy and also set the proper Output file directory path in three projects 'A.vcxproj', 'B.vcxproj' and 'C.vcxproj'.
Could someone help me overcome this issue?
Thanks,
Prem