AlexBelo 12 Posted August 4, 2022 Hi all. I recompile my old 32-bit codebase to use it in Win64 projects. At moment I need to recompile a component with ide designer part (it lives in separate unit). Question: how to configue my package to avoid compilation of this unit? Share this post Link to post
Uwe Raabe 2057 Posted August 4, 2022 You need separate packages for runtime and design. 2 Share this post Link to post
AlexBelo 12 Posted August 5, 2022 Thank you. Googling "separate packages for runtime and design" returns old but still relevant detailed article: Creating Packages https://delphi.fandom.com/wiki/Creating_Packages Share this post Link to post
Uwe Raabe 2057 Posted August 5, 2022 IIRC, that separation has been suggested since Delphi 6. Share this post Link to post
AlexBelo 12 Posted August 5, 2022 But AFAIUI it was not obligatory. Now it's "must" for more-than-Win32 components. Share this post Link to post
Stefan Glienke 2002 Posted August 5, 2022 It was a must if you have done a bit more than just registering a component (such as custom designers and stuff) because then the package requires designide.bpl which you must not ship. Yet the IDE even in 11.1 creates new packages as design&runtime 🙄 1 Share this post Link to post
AlexBelo 12 Posted August 5, 2022 Hmm... But how I use such a component for more then 15 years?.. OK, most likely because I always compile monolithic executables. 🙂 Share this post Link to post