aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-05 19:41:45 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-05 19:41:45 +0100
commit268cac0f0f5812149a4b4a0d894a100d711a493c (patch)
treecc6df6a0de2217ba177a735cb8fa116bfcdb5237 /.dir-locals.el
parent81b2d1591d348ee7972d174a2ba2dee8dc7cea96 (diff)
downloadYAGE-268cac0f0f5812149a4b4a0d894a100d711a493c.tar.gz
YAGE-268cac0f0f5812149a4b4a0d894a100d711a493c.zip
Travis CI testing
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"))))))))))