Unresolved symbol: different behavior in QMake and MSBuild
I have three projects: A, B, and C. Project A is an executable/DLL, and projects B and C are static libraries. There is a function Add(int, int)
in B, which is called by A. The implementation of Add
depends on a function AddImpl
from C.