PDA

View Full Version : Adding Library Methods - Static Vs Dynamic



waynew
15th January 2010, 14:20
I need to add a library to my Qt application.
The question is, given that the application will be cross-platform, and the library is QSerialDevice, what is the best method - static or dynamic?
What are the tradeoffs between the two methods?

Thanks for your advice!

wysota
15th January 2010, 17:16
The question is, given that the application will be cross-platform, and the library is QSerialDevice, what is the best method - static or dynamic?
It doesn't matter, both are ok.


What are the tradeoffs between the two methods?

Dynamic means one more file to deploy, static means the main binary size is bigger.