Is the project name available in the Output Output Directory option using Delphi XE2?

I would like to create a common set of options for setting the basic parameters for many of the projects that we have, and I would like to direct each dcus project to a separate folder.

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

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

+6
source share
1 answer

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

+14
source

Source: https://habr.com/ru/post/910133/


All Articles