2019-02-17 00:03:36 +08:00
|
|
|
;;; tools/vterm/doctor.el -*- lexical-binding: t; -*-
|
2019-01-27 03:45:29 +08:00
|
|
|
|
|
|
|
(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"))
|
|
|
|
|
2019-02-21 23:22:04 +08:00
|
|
|
(unless (fboundp 'module-load)
|
|
|
|
(warn! "You have to compile emacs with MODULES support"))
|