Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the project's name available in the Unit Output Directory Option using Delphi XE2?

I would like to create an common Option Set to set basic settings for the many projects we have, and I would like to direct each project's dcus to separate folder.

I would like to set the "Unit output directory" to something like Build\dcu\$(Platform)\$(Config)\$(ProjectName)

Now there is no such variable as $(ProjectName). Is there somethine else?

like image 275
RM. Avatar asked Mar 07 '12 03:03

RM.


1 Answers

I had the same problem. Try \$(Platform)\$(Config)\$(MSBuildProjectName) That does the job for me.

like image 165
Tobias R Avatar answered Nov 15 '22 09:11

Tobias R