Files
alisp/.dir-locals.el
Aryadev Chavali b8d0ee2c7f .dir-locals: added compile-command for testing
When I'm writing unit test code, it's nicer to compile with full logs
by default.
2026-02-09 09:57:46 +00:00

9 lines
379 B
EmacsLisp

;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")
((nil . ((compile-command . "make MODE=debug test examples")
(+license/license-choice . "GNU General Public License Version 2")))
(c-mode . ((mode . clang-format)))
("test" .
((nil . ((compile-command . "make MODE=full test"))))))