Files
doomemacs/modules/emacs/vterm/doctor.el
SteamedFish 424c358786 Add vterm layer
vterm layer uses emacs-libvterm for terminal support
2019-01-27 03:53:33 +08:00

14 lines
517 B
EmacsLisp

;;; emacs/vterm/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "vterm-ctrl")
(warn! "Couldn't find libvterm library. Please install it on your system"))
(unless (executable-find "make")
(warn! "Couldn't find make command. Please install it on your system"))
(unless (executable-find "cmake")
(warn! "Couldn't find cmake command. Please install it on your system"))
(unless (string-match-p "MODULES" system-configuration-features)
(error! "You have to compile emacs with MODULES support"))