How to find and remove unused Delphi runtime packages from a project that uses packages?
I have a Delphi project consisting of several packages, in the required part of the packages there are several Borland / 3rd party packages (rtl.dcp, vcl.dcp). I know that I need most of them, but there are those that, as I know, I don’t need, that crept over time, maybe the component used them once, but then this component was removed, or maybe it’s There was a test code from me.
How to find out which ones are needed and which are not? and if they are not needed, should they still be distributed with the final application or have any effect on the size / memory size of the application?
I try to make everything as streamlined as possible.
source
share