Re: [CMake] Converting existing XCode project into CMake

2006-09-12 Thread Michael Casadevall
Unfortunately, you have to do it by hand by writing the new CMakeLists.txt files. Once you do that, you can generate an XCode build file from CMake, but you can't do the reverse. Michael On Sep 12, 2006, at 10:14 AM, Thangaraj Umapathy wrote: Hi All, I am new to CMake. I want know how to co

Re: [CMake] Adding cross-compiler support to CMake ...

2006-09-08 Thread Michael Casadevall
It would just need to be in the cross-compiler's directory. The test needs to do TRY_COMPILE on the cross-compiler, and as long as it compiles, the library is in the right place. TRY_RUN should be able to run tests remotely, or have a manual answer put in place just incase the target hardwa

Re: [CMake] Adding cross-compiler support to CMake ...

2006-09-08 Thread Michael Casadevall
iles, but that's for another post, another day. Michael On Sep 8, 2006, at 10:41 AM, William A. Hoffman wrote: At 02:39 AM 9/8/2006, Michael Casadevall wrote: I've been working on determining on how to do the platform part of this. My first guess is we could do something like this i

Re: [CMake] Adding cross-compiler support to CMake ...

2006-09-07 Thread Michael Casadevall
name like this, which should be the default when cross-compilng:*host*-*vendor*-*style*-gcc*host*-*vendor*-*style*-g++etc.MichaelOn Sep 7, 2006, at 7:35 PM, William A. Hoffman wrote:At 06:42 PM 9/7/2006, Michael Casadevall wrote: 1. Never seen that. autotools should only enter cross-compiling mode

Re: [CMake] Adding cross-compiler support to CMake ...

2006-09-07 Thread Michael Casadevall
ll comes together and see specifically what needs modification now. I'm deciding if a new generator is needed, or the Unix one can be recycled with a lot of hack and slashing. Michael On Sep 7, 2006, at 5:59 PM, William A. Hoffman wrote: At 05:38 PM 9/7/2006, Michael Casadevall wrot

Re: [CMake] Adding cross-compiler support to CMake ...

2006-09-07 Thread Michael Casadevall
Begin forwarded message:From: Michael Casadevall <[EMAIL PROTECTED]>Date: September 7, 2006 5:38:14 PM EDTTo: "William A. Hoffman" <[EMAIL PROTECTED]>Subject: Re: [CMake] Adding cross-compiler support to CMake ... I would disagree with that. Your using a cross-compiler, but

Re: [CMake] Adding cross-compiler support to CMake ... (fwd)

2006-09-06 Thread Michael Casadevall
packages that don't use autotoos. Michael On Sep 6, 2006, at 4:21 PM, William A. Hoffman wrote: At 03:55 PM 9/6/2006, Brandon J. Van Every wrote: Michael Casadevall wrote: My intent here is not to start a flamewar between autotools and cmake, In some cases, autotools is the prope

Fwd: [CMake] Adding cross-compiler support to CMake ... (fwd)

2006-09-06 Thread Michael Casadevall
Begin forwarded message:From: Michael Casadevall <[EMAIL PROTECTED]>Date: September 6, 2006 1:04:23 PM EDTTo: Alan W. Irwin <[EMAIL PROTECTED]>Cc: Robert Schwebel <[EMAIL PROTECTED]>Subject: Re: [CMake] Adding cross-compiler support to CMake ... (fwd) Hrm, I thought my mail

[CMake] Adding cross-compiler support to CMake ...

2006-09-05 Thread Michael Casadevall
I wish to add support for cross-compiling to CMake since its a tool I use a lot, and I can finally kill the last few of my projects using autotools. To my knowledge, autotools is the only system that provides cross-compiling, and poorly at that, and I've been thinking on ways to add it to C

[CMake] Adding Code::Blocks support

2006-05-05 Thread Michael Casadevall
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I would like to add a new generator to CMake adding support for Code::Block Project Files, since Code::Blocks, while being an IDE, doubles as a full build system which supports quite a few obscure compilers such as the Digital Mars compiler tha