.dir-locals: added compile-command for testing

When I'm writing unit test code, it's nicer to compile with full logs
by default.
This commit is contained in:
2026-02-09 09:57:46 +00:00
parent fe727d75e4
commit b8d0ee2c7f

View File

@@ -3,4 +3,6 @@
((nil . ((compile-command . "make MODE=debug test examples")
(+license/license-choice . "GNU General Public License Version 2")))
(c-mode . ((mode . clang-format))))
(c-mode . ((mode . clang-format)))
("test" .
((nil . ((compile-command . "make MODE=full test"))))))