aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 4bc48695..48a041b2 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -8,7 +8,10 @@
(list (concat "-I" (projectile-project-root) "lib/googletest/googletest/include")))))
(setq company-clang-arguments (delete-dups (append
company-clang-arguments
- (list (concat "-I" (projectile-project-root) "lib/yajl/include")))))
+ (list (concat "-I" (projectile-project-root) "lib/rapidjson/include")))))
+ (setq company-clang-arguments (delete-dups (append
+ company-clang-arguments
+ (list (concat "-I" (projectile-project-root) "lib/rapidxml")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
(list (concat (projectile-project-root) "include")))))
@@ -17,4 +20,7 @@
(list (concat (projectile-project-root) "lib/googletest/googletest/include")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
- (list (concat (projectile-project-root) "lib/yajl/include"))))))))))
+ (list (concat (projectile-project-root) "lib/rapidjson/include")))))
+ (setq flycheck-clang-include-path (delete-dups (append
+ flycheck-clang-include-path
+ (list (concat (projectile-project-root) "lib/rapidxml"))))))))))