aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-04 00:59:32 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-04 00:59:32 +0100
commit81b2d1591d348ee7972d174a2ba2dee8dc7cea96 (patch)
tree078dc35034b2dfdfdc7d849bad136b210390de87 /.dir-locals.el
parentd4eae8dfc1fcf68e198205b9bab7574b4c17cc66 (diff)
downloadYAGE-81b2d1591d348ee7972d174a2ba2dee8dc7cea96.tar.gz
YAGE-81b2d1591d348ee7972d174a2ba2dee8dc7cea96.zip
Adding rapidjson
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 40c788b1..4bc48695 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -5,10 +5,16 @@
(list (concat "-I" (projectile-project-root) "include")))))
(setq company-clang-arguments (delete-dups (append
company-clang-arguments
- (list (concat "-I" (projectile-project-root) "googletest/googletest/include")))))
+ (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")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
(list (concat (projectile-project-root) "include")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
- (list (concat (projectile-project-root) "googletest/googletest/include"))))))))))
+ (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"))))))))))