I have a Qt project, for a shared library:
TARGET =foo
TEMPLATE = lib
INSTALLS += TARGET
After compile there is libfoo0.1.0.so and it links against say A, B, C, D. For some reason I need to divide my project into three or more projects. Say foo, bar, baz and they link against A, A and B, C, D. I don’t want to divide it into several projects though.
Is this achievable by editing .pro file?
↧