Is there a way to have a Project named "SomeProject" that creates an EXE named "SomethingDifferent.exe"? In .net it is simple to have your project name be independent of your generated Assembly name, but I don't see how to do the equivalent in Delphi 2007.
You can use MSbuild with the Post-build event
for example you can create a copy of your exe with the name which you want using a command like this
DEL "$(OUTPUTDIR)SomethingDifferent.Exe"
COPY "$(OUTPUTDIR)$(OUTPUTFILENAME)" "$(OUTPUTDIR)SomethingDifferent.Exe"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With