From 86c661512da9b52f6969c66ad795b7936e3edc55 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 7 Oct 2022 07:25:50 -0500 Subject: [PATCH] adding compile-command to dir-locals --- .dir-locals.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.dir-locals.el b/.dir-locals.el index 02de591..93ef2d7 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,5 +2,6 @@ ;;; For more information see (info "(emacs) Directory Variables") ((nil . ((projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make -j8 --dir build/ && rm -rf ~/.cache/librepresenter/Libre\ Presenter/qmlcache/") + (compile-command . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make -j8 --dir build/ && rm -rf ~/.cache/librepresenter/LibrePresenter/qmlcache/") (projectile-project-run-cmd . "./build/bin/presenter"))) (c++-mode . ((aggressive-indent-mode . nil))))