mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 12:00:24 +10:00
11 lines
387 B
EmacsLisp
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"))
|