[CMake] can't build translated makefile on snow leopard 10.6.5 w/ g++ 4.2.1 (complaint: g++: No such file or directory, although g++ is there!!)

2010-12-20 Thread ny
greetings! I am trying to build research code written in (templated) c++, size is approximately ~15K lines. The code was never been tested on a mac, not to mention snow leopard. I have the guarantee that it compiles + builds for win + linux. Project was a collaborative effort and unfortunately

Re: [CMake] can't build translated makefile on snow leopard 10.6.5 w/ g++ 4.2.1 (complaint: g++: No such file or directory, although g++ is there!!)

2010-12-20 Thread Andreas Pakulat
On 20.12.10 23:34:55, ny wrote: The code was never been tested on a mac, not to mention snow leopard. I have the guarantee that it compiles + builds for win + linux. Project was a collaborative effort and unfortunately I am stuck without a makefile =P and with the ugly *.vcproj file. Note that

Re: [CMake] can't build translated makefile on snow leopard 10.6.5 w/ g++ 4.2.1 (complaint: g++: No such file or directory, although g++ is there!!)

2010-12-20 Thread Ryan Pavlik
It seems you might be over-analyzing the conversion: makefiles are much lower-level than well-written cmake build systems. I would suggest you start with the CMake tutorial [1], then start from scratch on the build system for this code. Think at a high level, about what files turn into what

Re: [CMake] can't build translated makefile on snow leopard 10.6.5 w/ g++ 4.2.1 (complaint: g++: No such file or directory, although g++ is there!!)

2010-12-20 Thread ny
On Mon, Dec 20, 2010 at 11:54 PM, Ryan Pavlik rpav...@iastate.edu wrote: It seems you might be over-analyzing the conversion: makefiles are much lower-level than well-written cmake build systems. I would suggest you start with the CMake tutorial [1], then start from scratch on the build

Re: [CMake] can't build translated makefile on snow leopard 10.6.5 w/ g++ 4.2.1 (complaint: g++: No such file or directory, although g++ is there!!)

2010-12-20 Thread ny
On Mon, Dec 20, 2010 at 11:53 PM, Andreas Pakulat ap...@gmx.de wrote: On 20.12.10 23:34:55, ny wrote: The code was never been tested on a mac, not to mention snow leopard. I have the guarantee that it compiles + builds for win + linux. Project was a collaborative effort and unfortunately I