>I use XCode to browse code / debug and it works out of the box with >CMake. And on Non-mac platforms (Ubuntu/Win32) anyone? Thx T. -- NEU: FreePhone - kostenlos mobil telefonieren und surfen! Jetzt informieren: http://www.gmx.net/de/go/freephone |
On 7 April 2011 10:36, Torsten Bergmann <[hidden email]> wrote: > >>I use XCode to browse code / debug and it works out of the box with >>CMake. > > And on Non-mac platforms (Ubuntu/Win32) anyone? > cmake could generate project files for IDEs available on that platform here the list of generators supported by cmake: http://www.cmake.org/cmake/help/cmake-2.6.html#section_Generators AFAIK , codeblocks runs on unix systems. not sure if it has an integrated debugger, but i bet it is. > Thx > T. > -- > NEU: FreePhone - kostenlos mobil telefonieren und surfen! > Jetzt informieren: http://www.gmx.net/de/go/freephone > -- Best regards, Igor Stasenko AKA sig. |
Do you know why XCode is not listed there? I would love to have a real list of all the posible CMake generators. Cheers Mariano On Thu, Apr 7, 2011 at 10:48 AM, Igor Stasenko <[hidden email]> wrote:
-- Mariano http://marianopeck.wordpress.com |
On 7 April 2011 10:55, Mariano Martinez Peck <[hidden email]> wrote: > > Do you know why XCode is not listed there? I would love to have a real list of all the posible CMake generators. > Easy. if you run cmake --help at the end it provides a list of available generators. > Cheers > > Mariano > > On Thu, Apr 7, 2011 at 10:48 AM, Igor Stasenko <[hidden email]> wrote: >> >> On 7 April 2011 10:36, Torsten Bergmann <[hidden email]> wrote: >> > >> >>I use XCode to browse code / debug and it works out of the box with >> >>CMake. >> > >> > And on Non-mac platforms (Ubuntu/Win32) anyone? >> > >> >> cmake could generate project files for IDEs available on that platform >> >> here the list of generators supported by cmake: >> >> http://www.cmake.org/cmake/help/cmake-2.6.html#section_Generators >> >> AFAIK , codeblocks runs on unix systems. >> not sure if it has an integrated debugger, but i bet it is. >> >> > Thx >> > T. >> > -- >> > NEU: FreePhone - kostenlos mobil telefonieren und surfen! >> > Jetzt informieren: http://www.gmx.net/de/go/freephone >> > >> >> >> >> -- >> Best regards, >> Igor Stasenko AKA sig. > > > > -- > Mariano > http://marianopeck.wordpress.com > > > -- Best regards, Igor Stasenko AKA sig. |
On Thu, Apr 7, 2011 at 11:20 AM, Igor Stasenko <[hidden email]> wrote:
Igor, I ... I .. Lov...no no no. I cannot say it. You are a cool guy :) I am learning a lot for my next post eheheh I have a couple of questions: 1) is there a way to know which generator is the default? I mean if I do cmake . which one is taking? 2) So...the list of the generators are directly the parameter, aren't they? example: cmake . -G "Unix Makefiles" or cmake . -G "KDevelop3 - Unix Makefiles" etc... at the end it provides a list of available generators. -- Mariano http://marianopeck.wordpress.com |
On 7 April 2011 11:45, Mariano Martinez Peck <[hidden email]> wrote: > > > > On Thu, Apr 7, 2011 at 11:20 AM, Igor Stasenko <[hidden email]> wrote: >> >> On 7 April 2011 10:55, Mariano Martinez Peck <[hidden email]> wrote: >> > >> > Do you know why XCode is not listed there? I would love to have a real list of all the posible CMake generators. >> > >> Easy. >> >> if you run >> cmake --help >> > > Igor, I ... I .. Lov...no no no. I cannot say it. You are a cool guy :) > > I am learning a lot for my next post eheheh > > I have a couple of questions: > 1) is there a way to know which generator is the default? I mean if I do cmake . which one is taking? no idea. > 2) So...the list of the generators are directly the parameter, aren't they? example: > cmake . -G "Unix Makefiles" > or > cmake . -G "KDevelop3 - Unix Makefiles" > > etc... > yes. but you can try it yourself and see all i learned about cmake can be found on their docs/wiki etc. this is the way how i did it, and this is a way you should do it it is well documented :) -- Best regards, Igor Stasenko AKA sig. |
In reply to this post by Mariano Martinez Peck
CONTENTS DELETED
The author has deleted this message.
|
On 7 April 2011 20:39, Marco Schmidt <[hidden email]> wrote: > > 2011/4/7 Mariano Martinez Peck <[hidden email]>: >> >> >> I have a couple of questions: >> 1) is there a way to know which generator is the default? I mean if I do cmake . which one is taking? >> 2) So...the list of the generators are directly the parameter, aren't they? example: >> cmake . -G "Unix Makefiles" >> or >> cmake . -G "KDevelop3 - Unix Makefiles" >> > > Yes - there is no default generator. You need to pass the generator > on every call to cmake (e.g. cmake . -G"Xcode") > >> etc... >> >> >>> >>> at the end it provides a list of available generators. >>> > > This lists the generators available on your current plattform. If you > are on a MacOSX Host you do not get the Visual-Studio generators. > > You are linking to a version 2.6 of cmake. The current version is > 2.8.4. There is better support for VS2010 and Xcode in the newer > version. > > Marco > > Q: I have to investigate how to support cross compiling (Linux x86 -> > ARM). Any first hand knowledge out there? > AFAIK cmake consists of modules, which you can add at your will. So probably you have to find corresponding module and install it. -- Best regards, Igor Stasenko AKA sig. |
In reply to this post by Hockenberry
On Thu, Apr 7, 2011 at 8:39 PM, Marco Schmidt <[hidden email]> wrote:
Wait.... I can do: cmake . and it works. Why ? I guess it is using a default from somewhere...
You are talking to Igor or to me? cmake --version gives me 2.8.4
-- Mariano http://marianopeck.wordpress.com |
Free forum by Nabble | Edit this page |