I have a special library to be included in Qt. It is currently enabled by adding the following .pro files.
INCLUDEPATH += ... DEPENDPATH += ... LIB += ...
Since the library is used in most of my projects. I am wondering if there is a way to make my own library integrated with QtSDK? Perhaps it can be included in the syntax, for example, built-in components
QT += my_custom_library
and thatโs it (the header file includes the path, the lib file include, etc.).
Is integration possible?
source share