<div dir="ltr"><div><div><div><div><div><div>Hi.<br></div>For all of my projects I use 2.8 as minimum. I remember that I started using CMake when it was 2.6.<br></div>Looking at CMake release history ( <a href="https://cmake.org/Wiki/CMake_Released_Versions">https://cmake.org/Wiki/CMake_Released_Versions</a> ) 2.8.0 was released in 2009.<br></div>Debian 6 ( <a href="https://archive.debian.net/squeeze/devel/cmake">https://archive.debian.net/squeeze/devel/cmake</a> , released in 2011)  had 2.8.2.<br></div>Ubuntu 12.04 LTS Precise ( <a href="http://packages.ubuntu.com/search?keywords=cmake&searchon=names&suite=precise&section=all">http://packages.ubuntu.com/search?keywords=cmake&searchon=names&suite=precise&section=all</a> , released in 2012 and supported up to 2017) had 2.8.7.<br></div>For Windows and OS X it's easy to download the most up-to-date version.<br><br></div>So I suggest using 2.8 as minimum. Distros that was released in 2012 and after are definitely covered.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2016-06-08 23:49 GMT+07:00 Robert Osfield <span dir="ltr"><<a href="mailto:robert.osfield@gmail.com" target="_blank">robert.osfield@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi All,<br>
<br>
We have various optional script paths in our CMake build system to try<br>
and keep things working on older CMake versions, the minimum currently<br>
is set in OpenSceneGraph/CMakeLists.txt:<br>
<br>
IF(WIN32)<br>
    CMAKE_MINIMUM_REQUIRED(VERSION 2.4.6 FATAL_ERROR)<br>
ELSE(WIN32)<br>
    IF(APPLE)<br>
        CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0 FATAL_ERROR)<br>
    ELSE(APPLE)<br>
        CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)<br>
    ENDIF(APPLE)<br>
ENDIF(WIN32)<br>
<br>
<br>
This bit of script is ancient though, something coded in when we first<br>
added CMake build system.  Fast forward today, can we up the require<br>
version to 2.6?  2.8?<br>
<br>
Robert.<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div>