Should I use a DLL? Topic is solved

This forum can be used to talk about general design strategies, new ideas and questions in general related to wxWidgets. If you feel your questions doesn't fit anywhere, put it here.
Post Reply
computerquip
Experienced Solver
Experienced Solver
Posts: 72
Joined: Fri Feb 20, 2009 7:13 pm
Location: $(#wx)\src

Should I use a DLL?

Post by computerquip »

I've never really looked into it but when I do, I never have actually found an actual answer to my question.

POINT: Is it common practice to use a DLL rather than link to the libraries statically? Normally, I would link to the program statically because it's more convenient for testing and passing around but when I finish a product, I'm not sure what to do.

](*,)
illnatured
Filthy Rich wx Solver
Filthy Rich wx Solver
Posts: 234
Joined: Mon May 08, 2006 12:31 pm
Location: Krakow, Poland

Post by illnatured »

DLL is almost always unneccesary unless you are creating an application consisting of several executable modules that share a library such as wxWidgets. In any other circumstances, distributing a DLL is probably a waste of time.
Post Reply