I am replacing an ancient Makefile with Finalbuilder. One of the things I need to do is compile a project with multiple different versions of Delphi. I have all the bin and lib directories for the various compilers setup under a common root, rather like this post The Delphi Geek: Setting Up a Parallel Build System. Note, like that post, I don’t have the entire IDEs installed, just the bits necessary to use the command line compilers.
After reading this thread, Change path to dcc32.exe when using a delphi build action, I setup Project variables for the different dcc32 and brcc32 executables, however Finalbuilder doesn’t seem to be using them. It continually complains about not being able to find dcc32:
“Delphi compiler not found. Please make sure you have specified the correct Delphi compiler version”
Here are the two variables I have setup:
DELPHI7 Z:\compilers\delphi\7.0\Bin\dcc32.exe
DELPHI7_BRCC32 Z:\compilers\delphi\7.0\Bin\brcc32.exe
So it feels like I’m missing a step. Anyone done this before?
Cheers
Malcolm