Server IP : 172.67.216.182 / Your IP : 162.158.108.9 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/cmake-3.22/Help/variable/ |
Upload File : |
CMAKE_VERSION ------------- The CMake version string as three non-negative integer components separated by ``.`` and possibly followed by ``-`` and other information. The first two components represent the feature level and the third component represents either a bug-fix level or development date. Release versions and release candidate versions of CMake use the format:: <major>.<minor>.<patch>[-rc<n>] where the ``<patch>`` component is less than ``20000000``. Development versions of CMake use the format:: <major>.<minor>.<date>[-<id>] where the ``<date>`` component is of format ``CCYYMMDD`` and ``<id>`` may contain arbitrary text. This represents development as of a particular date following the ``<major>.<minor>`` feature release. Individual component values are also available in variables: * :variable:`CMAKE_MAJOR_VERSION` * :variable:`CMAKE_MINOR_VERSION` * :variable:`CMAKE_PATCH_VERSION` * :variable:`CMAKE_TWEAK_VERSION` Use the :command:`if` command ``VERSION_LESS``, ``VERSION_GREATER``, ``VERSION_EQUAL``, ``VERSION_LESS_EQUAL``, or ``VERSION_GREATER_EQUAL`` operators to compare version string values against ``CMAKE_VERSION`` using a component-wise test. Version component values may be 10 or larger so do not attempt to compare version strings as floating-point numbers. .. note:: CMake versions 2.8.2 through 2.8.12 used three components for the feature level. Release versions represented the bug-fix level in a fourth component, i.e. ``<major>.<minor>.<patch>[.<tweak>][-rc<n>]``. Development versions represented the development date in the fourth component, i.e. ``<major>.<minor>.<patch>.<date>[-<id>]``. CMake versions prior to 2.8.2 used three components for the feature level and had no bug-fix component. Release versions used an even-valued second component, i.e. ``<major>.<even-minor>.<patch>[-rc<n>]``. Development versions used an odd-valued second component with the development date as the third component, i.e. ``<major>.<odd-minor>.<date>``. The ``CMAKE_VERSION`` variable is defined by CMake 2.6.3 and higher. Earlier versions defined only the individual component variables.