I have a confusing question: How to build a multilibrary (modular) project? Can I build something similar like C# Windows Forms Application ? For example:
Qt Code:
  1. Project.exe
  2. Project.Core.dll
  3. Project.Services.dll
  4. Project.Resources.dll
  5. ...
To copy to clipboard, switch view to plain text mode 
I don't think that plug-ins will be the best solution or yes? I have tried this:
Qt Code:
  1. // Project.exe
  2. int main(...)
  3. {
  4. // Load Core library and get main window instance
  5. }
To copy to clipboard, switch view to plain text mode 
But this example won't work because it won't draw any window. I very thanks for all responses or solutions.