11 lines
387 B
EmacsLisp
11 lines
387 B
EmacsLisp
;;; term/vterm/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(unless (executable-find "make")
|
|
(warn! "Couldn't find make command. Vterm module won't compile"))
|
|
|
|
(unless (executable-find "cmake")
|
|
(warn! "Couldn't find cmake command. Vterm module won't compile"))
|
|
|
|
(unless (fboundp 'module-load)
|
|
(warn! "Your emacs wasn't built with dynamic modules support. The vterm module won't build"))
|