I am trying to figure out something that is causing an error when trying to compile code in Qt Creator, that is linking in my externally built libraries.
It is complaining about an "undefined reference to myclass::myclass(args)" constructor.
However, this class has been built, and the object file was included in an archive called common.a .
The code that references myclass is actually in another library, called CSV.a
So, I know my Qt project can see CSV.a, and I know that there are other references to stuff in common.a that it is not complaining about, but apparently the stuff in CSV.a can't see the stuff in common.a in this arrangement.
What do I need to do differently?