PDA

View Full Version : Disabling Modules



Atomic_Sheep
21st September 2012, 09:06
Hi, in the documentaiton it's stated that QtCore and QtGui modules are automatically included. It's also stated that a module is simply a library. Question is... why would you want to disable -=gui for example (apart from for example not needing to use it in your application)... just to speed up compilation?

Zlatomir
21st September 2012, 09:37
Compilation speed would not help if it end with errors, so it's only for the case when you don't use gui in your application.

wysota
21st September 2012, 14:27
Hi, in the documentaiton it's stated that QtCore and QtGui modules are automatically included. It's also stated that a module is simply a library. Question is... why would you want to disable -=gui for example (apart from for example not needing to use it in your application)... just to speed up compilation?

To reduce dependencies and size of the deployment bundle.

Atomic_Sheep
21st September 2012, 15:40
Thanks guys.