2856b39d77
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/cmake#946181a294641a505e80490f7f68736e923be8c6
10 lines
285 B
EmacsLisp
10 lines
285 B
EmacsLisp
;;
|
|
;; Setup cmake-mode for autoloading
|
|
;;
|
|
(autoload 'cmake-mode "cmake-mode" "Major mode for editing CMake listfiles." t)
|
|
(setq auto-mode-alist
|
|
(append
|
|
'(("CMakeLists\\.txt\\'" . cmake-mode))
|
|
'(("\\.cmake\\'" . cmake-mode))
|
|
auto-mode-alist))
|