Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-08 Thread Ed
Sean: Sorry for the misdirection, Mail has some Idiosyncrasies I haven't quite figured out yet. Here is what I tried: cmake -DCMAKE_OSX_64=ON -DCMAKE_OSX_DEPLOYMENT_TARGET=10.6 -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ .. It built fine and runs on 10.7.5 but does not

Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-08 Thread Sean McBride
On Fri, 8 Feb 2013 09:22:12 -0800, Ed said: Here is what I tried: cmake -DCMAKE_OSX_64=ON -DCMAKE_OSX_DEPLOYMENT_TARGET=10.6 - DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ .. I've never heard of CMAKE_OSX_64 and google has only 7 results... It built fine and runs on 10.7.5

Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-08 Thread Ed
Sean: Thanks for the suggestions. On Feb 8, 2013, at 9:39 AM, Sean McBride wrote: On Fri, 8 Feb 2013 09:22:12 -0800, Ed said: Here is what I tried: cmake -DCMAKE_OSX_64=ON -DCMAKE_OSX_DEPLOYMENT_TARGET=10.6 - DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ .. I've never

Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-08 Thread Sean McBride
On Fri, 8 Feb 2013 10:53:16 -0800, Ed said: I've never heard of CMAKE_OSX_64 and google has only 7 results… CMAKE_OSX_64 is just a variable in the cmakelists.txt file which is converted to ARCH=X86_64. Does this variable need to be set to CMAKE_OSX_ARCHITECTURES=X86_64 instead of ARCH=X86_64?

Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-08 Thread Ed
Sean: On Feb 8, 2013, at 11:00 AM, Sean McBride wrote: On Fri, 8 Feb 2013 10:53:16 -0800, Ed said: I've never heard of CMAKE_OSX_64 and google has only 7 results… CMAKE_OSX_64 is just a variable in the cmakelists.txt file which is converted to ARCH=X86_64. Does this variable need to be

[CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-07 Thread Ed
Hello: I am trying to build an app to be compatible with Mac OSX systems 10.6, 10.7, and 10.8 using the command line with cmake. I have successfully built it for 10.7.5, now I would like to expand this app to be compatible with 10.6 and 10.8 is this possible? This is the command I am issuing

Re: [CMake] Building Mac OSX .apps for Sys 10.6 and 10.8 with Cmake using 10.7.5 on the command line

2013-02-07 Thread Sean McBride
On Thu, 7 Feb 2013 17:05:55 -0800, Ed said: I am trying to build an app to be compatible with Mac OSX systems 10.6, 10.7, and 10.8 using the command line with cmake. I have successfully built it for 10.7.5, now I would like to expand this app to be compatible with 10.6 and 10.8 is this possible?