Where can I find the bpl file after compiling the package?

I want to create a * .bpl file, but I cannot do this.
In particular, I am trying to create JEDI plugins, but I also tried an empty, clean Delphi package.

If I create a new package in Delphi XE3, I get an empty element - if I create this project called "Package1.bpl", I get the .dcu file in "debug / win32 /", but not. bpl file.
The compiler does not report an error.

An empty JEDI plugin (bpl-style) gives only .dcu, and an empty JEDI plugin in dll style gives a .cdu and .dll file in the "debug / win32 /" section.

This is the first time I'm trying to create a new package, so I completely lost it.
What am I missing?

Pharaoh

+4
source share
1 answer

Go to the Tools menu and go to Environment Options โ†’ Delphi Options โ†’ Library . There you will find Package Output Directory and DCP Output Directory . These directories are the default output directories for BPL and DCP, so bpl will be created if your packages are compiled, but in a different directory from what you expect.

JEDI plugins probably have their own output directory configured otherwise Project โ†’ Options .

+7
source

All Articles