I am confused a bit with a new RAD Studio version! Where can I specify a folder to put my output DLL files?
Asked
Active
Viewed 2,829 times
4
-
Just the same as executables, build system does not distinguish between programs and libraries. – Free Consulting Jan 28 '14 at 22:51
2 Answers
9
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.

Nasreddine Galfout
- 2,550
- 2
- 18
- 36

David Heffernan
- 601,492
- 42
- 1,072
- 1,490
0
in Project Options Delphi Compiler

GBoehm
- 183
- 1
- 16
-
2
-
Unfortunatelly whatever folder I specify there the only BPL, DCU files are put to this folder, but not the DLL. – user25638 Jan 28 '14 at 16:13
-
1