doomemacs/modules/term/vterm/doctor.el
jtpavlock 6cd601cf0f
remove warning message of optional vterm dependency
libvterm is an optional dependency per emacs-libvterm
2020-07-12 14:24:44 -05:00

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"))