views:

94

answers:

3

I'm looking for a make system, along the lines of CMake or Bakefile, that supports the generation of Visual Studio project files and makefiles (targetting Linux) dual targeting x86 and x64 (in the same project/make file).

I've looked at CMake and Bakefile and they both appear to have limitations in this respect; they both appear to not support multiple targets (Bakefile doesn't even seem to support 64bit vcproj).

Are there any other tools, open source or paid, that may be suitable?

A: 

CMake can generate code multiple targets architectures (32 and 64 bit, say) on different platforms (win and linux, say). I can also use qmake (part of Qt) for this.

Dirk Eddelbuettel
A: 

Although it's a higher level tool and that you probably already know about it, I would propose SCons.

Nicolas Buduroi
+1  A: 

There's a (simple) patch for Bakefile that enables it -- you may be able to help with testing it.

vslavik
Great, this address the problem
Stuart