Auto build tool for Delphi

6

Are there applications for automatic build, such as FinalBuilder , and Free or Open-Source ?
Preferably I support old and new versions of Delphi . What would these be?

    
asked by anonymous 16.04.2014 / 21:22

2 answers

4

Below I outline CI tools (continuous integration). It's not exactly what you asked for, but if you're not a developer working alone, I highly recommend you use a tool of this type. They automatically build, can monitor your repository and start builds automatically, etc.

  • Jenkins : Free and open source.
  • Continue CI : It has an initial free version that caters well to small teams. This is what I use and has served well. Very good support.
  • TeamCity : It has free initial version.
17.04.2014 / 15:12
3

You can use MSBuild to compile any version of delphi because it will perform compilation by command line.

follows an overview with more data to use the build by MSBuild in link

strong> of the own embarcadero (therefore to put the whole content would be a huge manual)

    
16.04.2014 / 21:27