Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-26 Thread Bill Hoffman
Robert Dailey wrote: It's been my understanding that calling message() without STATUS, WARNING, or ERROR was a STATUS by default. Considering that when I use both WARNING and ERROR the output looks different. Dialogs will appear and such. Are message() and message( STATUS ) not identical? If no

Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Robert Dailey
It's been my understanding that calling message() without STATUS, WARNING, or ERROR was a STATUS by default. Considering that when I use both WARNING and ERROR the output looks different. Dialogs will appear and such. Are message() and message( STATUS ) not identical? If not, what are the differenc

Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Michael Jackson
Would it be possible to do what compilers do: prepend status lines with "STATUS", warning with "WARNING" and error with "ERROR". That makes it easier to grep if needed and may help pull attention to each type of output. Just thinking out loud... --- Mike Jackson www.bluequ

Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Philip Lowman
On Wed, Mar 25, 2009 at 9:59 PM, Clinton Stimpson wrote: > > The intent I get from the documentation is that its a message that is meant > to say something important. It pops up in the CMakeSetup, shows up in the > error section of ccmake, and stdout of cmake. > > Maybe cmake-gui should show it b

Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Clinton Stimpson
The intent I get from the documentation is that its a message that is meant to say something important. It pops up in the CMakeSetup, shows up in the error section of ccmake, and stdout of cmake. Maybe cmake-gui should show it bold or something instead of red, which I also think of as an er

Re: [CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Philip Lowman
The rest of the text in that box that is black is printed via message(STATUS...). If you don't want your messages to show up red you can use message(STATUS "Hello World"). The message() command without STATUS is supposed to be a warning, I think. On Wed, Mar 25, 2009 at 7:59 PM, Robert Dailey w

[CMake] message() text shows up as RED in cmake-gui

2009-03-25 Thread Robert Dailey
Hi, Ever since CMake 2.6.3, the CMake-gui application on Windows has been displaying output from the message() function in red, even if it isn't an error. For example, if I do this: message( "Hello World" ) The text "Hello World" will show up in RED. Is this by design? I would prefer it show up a