doomemacs/modules/term/vterm/doctor.el

14 lines
473 B
EmacsLisp
Raw Normal View History

;;; term/vterm/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "vterm-ctrl")
(warn! "Couldn't find libvterm. Vterm module won't compile"))
(unless (executable-find "make")
(warn! "Couldn't find make command. Vterm module won't compile"))
(unless (executable-find "cmake")
2019-02-21 23:33:21 +08:00
(warn! "Couldn't find cmake command. Vterm module won't compile"))
2019-02-21 23:22:04 +08:00
(unless (fboundp 'module-load)
(warn! "Your emacs doesn't have MODULES support. Vterm module won't work"))