Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I specify an output folder for DLLs?

I am confused a bit with a new RAD Studio version! Where can I specify a folder to put my output DLL files?

like image 320
user25638 Avatar asked Jan 12 '23 08:01

user25638


1 Answers

It is under Project | Options | Delphi Compiler.

The option you are looking for is named Output Directory (by default .\$(Platform)\$(config)).

enter image description here

The documentation says:

Specifies where the compiler should put the executable file.

You need to be careful about the various different targets. It's easy to modify the options for the release build, go back to the IDE, compile a debug build, and then wonder why your setting has had no impact. If at all possible it is best to set the options at the highest level possible. In the screenshot above I illustrate the setting at the root level.

like image 152
David Heffernan Avatar answered Jan 15 '23 14:01

David Heffernan