Export QObject in multi library setup

Problem Suppose you want to split your application into components (shared libraries), in which the libraries can communicate via Qt’s signal slot mechanism. The components in your application may change over time and you want to have a solution, which automatically generates all necessary header and definitions to let your libraries export symbols. Recap In […]

How to export QObject on windows

Problem Suppose you have an qt application which is splitted into one or more shared libraries.Or you maybe want to provide library with shall be shared. In both cases you want to use Qt’s signal slot mechanism, which than is used by your application or the users of your library. Or you simply want to […]