1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-10-22 04:35:23 +00:00

dir-locals: Update projectile commands

We want to use meson, not ninja.

Part-of: <https://gitlab.gnome.org/GNOME/calls/-/merge_requests/755>
This commit is contained in:
Evangelos Ribeiro Tzaras 2024-09-11 15:09:41 +02:00
parent 1e4349f340
commit 3f96639b81

View file

@ -1,7 +1,7 @@
((nil . ((indent-tabs-mode . nil)
(projectile-project-compilation-cmd . "ninja -C _build")
(projectile-project-test-cmd . "ninja -C _build test")
(projectile-project-configure-cmd . "meson . _build")
(projectile-project-compilation-cmd . "meson compile -C _build")
(projectile-project-test-cmd . "meson test -C _build")
(projectile-project-configure-cmd . "meson _build --wipe")
(projectile-project-compilation-dir . ".")
(projectile-project-run-cmd . "_build/run -vvv")
))