vote up 0 vote down star

When building a Delphi 2009 component package, how do you specify which directory should contain the resulting .hpp and .lib files needed for C++ Builder users?

flag

71% accept rate

3 Answers

vote up 1 vote down check

There is a known bug: http://qc.embarcadero.com/wc/qcmain.aspx?d=67513 This is /expected/ to be fixed in the forthcoming Update 3. (Don't worry about the 10.0 resolved in build number, that is a mistake that will be corrected when Update 3 is released and all the bug fixes get synchronized back to QC)

link|flag
Update 3 was released today. – David Dean - Embarcadero May 28 at 23:57
vote up 4 vote down

On the Project|Options|Delphi Compiler|Linking page, the first two items are C++Builder .hpp output directory and C++Buidler .obj output directory should do what you want. The .lib and .bpi files. However, it seems that there is a bit of a bug in how these options are passed to the compiler... I'll speak with the engineer responsible about it.

From the command-line DCC32 you can use the following to control where to place these items:

-N0<path> = unit .dcu output directory
-NH<path> = unit .hpp output directory
-NO<path> = unit .obj output directory
-NB<path> = unit .bpi output directory

Note that the -NB switch AFAICR, also controls where the .lib file goes as well.

link|flag
Allen - welcome to SO - good to see you here! However, I don't see either of those options. The first two I see are "Debug Information" and "Image Base"....?? – Roddy Feb 9 at 21:36
vote up 1 vote down

As far as I know, you can't. None of the directory options seem to control it. However, you could probably define a post-build event (Project->Options->Build events) which would copy the files to where you wanted them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.