HI Philip,

Changes look good to me.  Making the required version of CMake to be
2.4.4 shouldn't be a problem, espcially given that I've only merged it
with svn/trunk and by the time 2.10 comes out 2.4.4 will be even less
of an issue :-)

So... we now have one CMakeLists.txt updated... lots more to go if we
are to do a complete purge...

Robert.

On Mon, Mar 9, 2009 at 10:08 PM, Philip Lowman <[email protected]> wrote:
> At a cost of bumping the required version to CMake 2.4.4 (released all the
> way back on November 21, 2006)... this cmake script patch
>
> 1. Makes IF/ELSE/ENDIF code blocks easier to read by replacing code like
> this:
>
> IF(FOO)
>    MESSAGE("FOO is true")
> ELSE(FOO)
>   MESSAGE(" ??? ELSE(FOO)??? ")
> ENDIF(FOO)
>
> with this:
>
> IF(FOO)
>    MESSAGE("FOO is true")
> ELSE()
>   MESSAGE("FOO is clearly false")
> ENDIF()
>
> 2. Also adds an ELSEIF() where it makes sense to do so (safe to use as of
> CMake 2.4.4)
>
>
> --
> Philip Lowman
>
> _______________________________________________
> osg-submissions mailing list
> [email protected]
> http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
>
>
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to