When I'm writing unit test code, it's nicer to compile with full logs by default.
9 lines
379 B
EmacsLisp
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"))))))
|