I have the following library:
: [ glob *.cpp *.cc *.h ]
<library>/qt5//QtCore/<link>shared
<library>/qt5//QtWidgets/<link>shared
<library>/qt5//QtGui/<link>shared
Using this library in my app pulls in the required qt libraries and links fine
If I replace the qt requirements with an alias, and reference that alias in my library, my app fails to link with "undefined reference"
<library>/qt5//QtCore/<link>shared
<library>/qt5//QtWidgets/<link>shared
<library>/qt5//QtGui/<link>shared
: [ glob *.cpp *.cc *.h ]
TIA
Steve