2019-05-18 23:41:18 -04:00
|
|
|
;;; term/vterm/doctor.el -*- lexical-binding: t; -*-
|
2019-01-27 03:45:29 +08:00
|
|
|
|
|
|
|
(unless (executable-find "make")
|
2019-03-13 20:20:19 -04:00
|
|
|
(warn! "Couldn't find make command. Vterm module won't compile"))
|
2019-01-27 03:45:29 +08:00
|
|
|
|
|
|
|
(unless (executable-find "cmake")
|
2019-02-21 23:33:21 +08:00
|
|
|
(warn! "Couldn't find cmake command. Vterm module won't compile"))
|
2019-01-27 03:45:29 +08:00
|
|
|
|
2019-02-21 23:22:04 +08:00
|
|
|
(unless (fboundp 'module-load)
|
2019-10-17 01:47:58 -04:00
|
|
|
(warn! "Your emacs wasn't built with dynamic modules support. The vterm module won't build"))
|