f58644
;;
f58644
;; Setup cmake-mode for autoloading
f58644
;;
f58644
(autoload 'cmake-mode "cmake-mode" "Major mode for editing CMake listfiles." t)
f58644
(setq auto-mode-alist
f58644
          (append
f58644
           '(("CMakeLists\\.txt\\'" . cmake-mode))
f58644
           '(("\\.cmake\\'" . cmake-mode))
f58644
           auto-mode-alist))