Delphi 2007 post-build event, copy exe to specific directory?

In Delphi 2007, how can I copy a newly created exe to a specific directory using the post-build event?

Any reference to the list of build event commands would be greatly appreciated.

+6
source share
1 answer

Use the copy command in the post-build event:

 copy "$(OUTPUTPATH)" MyFolder 

$(OUTPUTPATH) expands to the full path of the output file.

+9
source

All Articles