Re: [CMake] Re: FindSDL.cmake and mingw / msys

2007-04-04 Thread PA Galmes
On 4/1/07, E. Wing <[EMAIL PROTECTED]> wrote: > Maybe this could be implemented in a major release of CMake, thus > developers would be aware that changes are required to their scripts. > As soon as it is advertized enought, it's ok. I'm more inclined to leave the current behavior, and when SDL

[CMake] Re: ELSEIF? ...is or is not implemented?

2007-04-04 Thread Matthew Woehlke
Kishore, Jonnalagadda (IE10) wrote: Matthew Woehlke wrote: I found this: http://www.cmake.org/pipermail/cmake/2006-September/05.html There is also mention of 'ELSEIF' in the CMake manpage (2.4.6), but it doesn't seem to work. Was this implemented? If yes, can someone give a simple example o

Re: [CMake] showing the exact compiler command line

2007-04-04 Thread Bill Hoffman
Filipe Sousa wrote: Jesper Eskilson wrote: Hi! Is there any way to get NMake Makefiles to show the exact compiler options used? If I do nmake VERBOSE=yes I only see that cl is executed like this: [...]/cl.exe @commandfile but the command file is removed when nmake exits. I'm having trou

Re: [CMake] showing the exact compiler command line

2007-04-04 Thread Filipe Sousa
Jesper Eskilson wrote: > Hi! > > Is there any way to get NMake Makefiles to show the exact compiler > options used? If I do > > nmake VERBOSE=yes > > I only see that cl is executed like this: > > [...]/cl.exe @commandfile > > but the command file is removed when nmake exits. > > I'm having tr

Re: [CMake] ELSEIF? ...is or is not implemented?

2007-04-04 Thread Alan W. Irwin
On 2007-04-04 11:45-0500 Matthew Woehlke wrote: I found this: http://www.cmake.org/pipermail/cmake/2006-September/05.html There is also mention of 'ELSEIF' in the CMake manpage (2.4.6), but it doesn't seem to work. Was this implemented? If yes, can someone give a simple example of using i

RE: [CMake] ELSEIF? ...is or is not implemented?

2007-04-04 Thread Kishore, Jonnalagadda (IE10)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Matthew Woehlke > Sent: Wednesday, April 04, 2007 10:15 PM > To: cmake@cmake.org > Subject: [CMake] ELSEIF? ...is or is not implemented? > > I found this: > http://www.cmake.org/pipermail/cmake/2006-S

[CMake] ELSEIF? ...is or is not implemented?

2007-04-04 Thread Matthew Woehlke
I found this: http://www.cmake.org/pipermail/cmake/2006-September/05.html There is also mention of 'ELSEIF' in the CMake manpage (2.4.6), but it doesn't seem to work. Was this implemented? If yes, can someone give a simple example of using it? If no, why does the manpage mention it? -- M

Re: [CMake] TARGET_LINK_LIBRARIES build types and assorted .vcproj "fixes"

2007-04-04 Thread Joshua Jensen
Bill Hoffman wrote: Joshua Jensen wrote: * Reservation of a 10 megabyte stack in Windows-cl.cmake is overkill. The default is 1 megabyte. Why is this here? I removed it. I guess this goes back to the projects that CMake was originally developed for. But now due to backward compatibility I

RE: [CMake] --register-prefix-optional becomes -fregister-prefix-optional

2007-04-04 Thread Kishore, Jonnalagadda (IE10)
Sorry. I observed more closely with VERBOSE=1. It is not cmake's fault. Cmake passes the argument "as is" but when the compiler returns an error; it replaces the leading -- with -f in the error message. Warm regards, Kishore > -Original Message- > From: Bill Hoffman [mailto:[EMAIL PROTECT

Re: [CMake] TARGET_LINK_LIBRARIES build types and assorted .vcproj "fixes"

2007-04-04 Thread Bill Hoffman
Joshua Jensen wrote: Hi. After researching a number of build systems, I settled upon CMake. As I began converting my projects to CMakeLists.txt, I ran into a number of issues (discussed below). At the moment, I'm only trying to bring the Visual Studio build up. I don't profess any of my "f

Re: [CMake] --register-prefix-optional becomes -fregister-prefix-optional

2007-04-04 Thread Bill Hoffman
Kishore, Jonnalagadda (IE10) wrote: If I add the flag "--register-prefix-optional" cmake actually passes "-fregister-prefix-optional" to the command line and this causes the command to fail saying that the option does not exist. How can I avoid this? Can you send a small example (self contai

[CMake] showing the exact compiler command line

2007-04-04 Thread Jesper Eskilson
Hi! Is there any way to get NMake Makefiles to show the exact compiler options used? If I do nmake VERBOSE=yes I only see that cl is executed like this: [...]/cl.exe @commandfile but the command file is removed when nmake exits. I'm having trouble setting CMAKE_CXX_FLAGS[_] properly. -- /Je