Yigang Wu
Yigang Wu

Reputation: 3592

About an "Auto-build" System

I have some projects which I wrote in C++ and compile with Visual Studio 2005. I'm using SVN for source control. Could you recommend an auto-build system to compile my code?

Upvotes: 1

Views: 334

Answers (2)

morechilli
morechilli

Reputation: 9817

Cruisecontrol or Cruisecontrol.net are both good for this kind of task. You can use them either alone or in partnership with a build (not autobuild) tool e.g. ant or nant.

(They are both free).

Don't be put off by their java or .net basis, either will happily allow you to build visual studio c++ from svn.

see

http://cruisecontrol.sourceforge.net/

http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET

Upvotes: 1

Lloyd
Lloyd

Reputation: 29668

FinalBuilder is second to none, check it: http://www.finalbuilder.com/

Upvotes: 1

Related Questions