mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-30 17:01:02 -05:00
14 lines
482 B
EmacsLisp
14 lines
482 B
EmacsLisp
;;; tools/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 (fboundp 'module-load)
|
|
(warn! "You have to compile emacs with MODULES support"))
|