Re: [CMake] CMake2.5 - wrong default install location for mingw

2007-10-21 Thread Gonzalo Garramuño
Bill Hoffman wrote: Looks like a nice patch that you can put in your cmakelist files. I still do not think it should go in CMake. I don't think that things built by cmake that are native windows things belong in the /usr/local mount point of msys. If you do, it is easy enough to change

[CMake] Cygwin CMake -- Support for VS.NET 2005 applications

2007-10-21 Thread Ravi Kiran
Hi Friend(s), I'm Ravi, software engineer from India. We have a requirement for execution of .net projects in Linux kind of environment. We have chosen the cygwin for this purpose. I'm new into the world of Linux, Cygwin as well as CMAKE. I'm unable to proceed forward and got

Re: [CMake] CMake2.5 - wrong default install location for mingw

2007-10-21 Thread Brandon Van Every
On 10/21/07, Gonzalo Garramuño [EMAIL PROTECTED] wrote: Also it uselessly... ... (which is somewhat disturbing). It seems you have strong opinions on what should be correct behavior and what is good coding style. How you choose to present those opinions probably matters as to how others will

Re: [CMake] Cygwin CMake -- Support for VS.NET 2005 applications

2007-10-21 Thread Brandon Van Every
On 10/21/07, Ravi Kiran [EMAIL PROTECTED] wrote: Hi Friend(s), I'm Ravi, software engineer from India. We have a requirement for execution of .net projects in Linux kind of environment. We have chosen the cygwin for this purpose. I'm new into the world of Linux, Cygwin as

Re: [CMake] CMake2.5 - wrong default install location for mingw

2007-10-21 Thread Brandon Van Every
On 10/21/07, Bill Hoffman [EMAIL PROTECTED] wrote: The only case where I would accept /usr/local as the default for make install for msys, is if someone made a native msys version of cmake that linked to the msys run time. That would be a cmake used for creating other msys applications that

Re: [CMake]: Patch for FIND_PACKAGE_HANDLE_STANDARD_ARGS

2007-10-21 Thread a . neundorf-work
On Sunday 21 October 2007 02:31, Miguel A. Figueroa-Villanueva wrote: I have created a feature request #5920 for the following issue. I won't apply the changes myself unless I'm assigned the feature, since I don't want to abuse my cvs modules access. The patch looks good so far. So if

Re: [CMake] Patch for Eclipse generator

2007-10-21 Thread a . neundorf-work
Hi, On Sunday 21 October 2007 00:48, you wrote: ... Just to make sure I understand: with this patch the two eclipse project files are always created in the source tree, right ? Right. What happens if you try to create two buildtrees for one source tree, which problems may appear ?

Re: [CMake]: Patch for FIND_PACKAGE_HANDLE_STANDARD_ARGS

2007-10-21 Thread Miguel A. Figueroa-Villanueva
On 10/21/07, Alex Neundorf wrote: On Sunday 21 October 2007 02:31, Miguel A. Figueroa-Villanueva wrote: I have created a feature request #5920 for the following issue. I won't apply the changes myself unless I'm assigned the feature, since I don't want to abuse my cvs modules access. The

[CMake] find folder matching regex?

2007-10-21 Thread Joseph Garvin
I'm trying to write a FindBlitz.cmake file for the popular Blitz++ library ( http://www.oonumerics.org/blitz/). On windows, the folder containing blitz is usually of the form C:/blitz-x.x (where x.x is a version number). I would like to say, Look for blitz/blitz.h in any folder matching

Re: [CMake] Patch for Eclipse generator

2007-10-21 Thread Pau Garcia i Quiles
Quoting [EMAIL PROTECTED]: Hi, On Sunday 21 October 2007 00:48, you wrote: ... Just to make sure I understand: with this patch the two eclipse project files are always created in the source tree, right ? Right. What happens if you try to create two buildtrees for one source tree, which

Re: [CMake] Patch for Eclipse generator

2007-10-21 Thread a . neundorf-work
On Monday 22 October 2007 00:19, Pau Garcia i Quiles wrote: Quoting [EMAIL PROTECTED]: Hi, On Sunday 21 October 2007 00:48, you wrote: ... Just to make sure I understand: with this patch the two eclipse project files are always created in the source tree, right ? Right.

Re: [CMake] including paths - basic

2007-10-21 Thread Philip Lowman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark Wyszomierski wrote: Hi Mike, When I try CMAKE_BUILD_TYPE MATCHES Debug, it seems to never execute the contents of that IF statement (as if I am never CMake'ing a DEBUG build?). I don't know if CMAKE_BUILD_TYPE is the same thing as what's

Re: [CMake] find folder matching regex?

2007-10-21 Thread Brandon Van Every
On 10/21/07, Joseph Garvin [EMAIL PROTECTED] wrote: and I don't see any way to iterate through all of the subfolders of a directory, FILE(GLOB ...) If the globbing expressions aren't enough for your search, then get the output, then run a STRING(REGEX ...) on them. Cheers, Brandon Van Every

Re: [CMake] including paths - basic

2007-10-21 Thread Mark Wyszomierski
Thanks for the detailed answer Philip. I was able to get around this for my case by the feature included with target_libraries(debug | optimized) - luckily that's exactly what I needed. I understand what you're saying, maybe I can add an entry to the cmake wikipedia about it, Thanks, Mark On

Re: [CMake] Patch for Eclipse generator

2007-10-21 Thread Miguel A. Figueroa-Villanueva
On 10/21/07, Pau Garcia i Quiles wrote: Quoting Alex Neundorf: On Sunday 21 October 2007 00:48, you wrote: Just to make sure I understand: with this patch the two eclipse project files are always created in the source tree, right ? Right. What happens if you try to create two