Function: projectile--cmake-version
projectile--cmake-version is a byte-compiled function defined in
projectile.el.
Signature
(projectile--cmake-version)
Documentation
Compute CMake version.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile--cmake-version ()
"Compute CMake version."
(let* ((string (shell-command-to-string "cmake --version"))
(match (string-match "^cmake version \\([0-9]+\\.[0-9]+\\.[0-9]+\\).*$" string)))
(when match
(version-to-list (match-string 1 string)))))