Reputation: 49
I am confused a bit with a new RAD Studio version! Where can I specify a folder to put my output DLL files?
Upvotes: 4
Views: 3310
Reputation: 613013
It is under Project | Options | Delphi Compiler.
The option you are looking for is named Output Directory (by default .\$(Platform)\$(config)
).
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.
Upvotes: 9