1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-29 00:19:28 +00:00

dir-locals: Exhaustive projectile setup

This expands on the minimal projectile setup we had before by including
compilation directory, configure and run commands.
This commit is contained in:
Evangelos Ribeiro Tzaras 2022-06-22 08:18:28 +02:00
parent 36b10bc764
commit fae760c541

View file

@ -1,6 +1,10 @@
((nil . ((indent-tabs-mode . nil)
(projectile-project-compilation-cmd . "ninja -C _build")
(projectile-project-test-cmd . "ninja -C _build test")))
(projectile-project-test-cmd . "ninja -C _build test")
(projectile-project-configure-cmd . "meson . _build")
(projectile-project-compilation-dir . ".")
(projectile-project-run-cmd . "_build/run -vvv")
))
;; thanks to Mohammed Sadiq, see https://source.puri.sm/Librem5/calls/-/merge_requests/332#note_159469
(c-mode . ((c-macro-names-with-semicolon
. ("G_BEGIN_DECLS" "G_END_DECLS" "G_DECLARE_FINAL_TYPE" "G_DEFINE_QUARK"