aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-20 23:01:12 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-20 23:01:12 +0100
commit977b8f16d7ef43101b6ef588f9610f34285fa7e6 (patch)
tree25446bc027685765a79492d3b68c49bdee53612b /.dir-locals.el
parentb869c926429e9316617a643960a97fad64dd42ef (diff)
downloadYAGE-977b8f16d7ef43101b6ef588f9610f34285fa7e6.tar.gz
YAGE-977b8f16d7ef43101b6ef588f9610f34285fa7e6.zip
Replacing SDL by glfw
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index e0f76bc1..bb978ba8 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -12,6 +12,9 @@
(setq company-clang-arguments (delete-dups (append
company-clang-arguments
(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/glfw/include")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
(list (concat (projectile-project-root) "yage")))))
@@ -23,4 +26,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/glfw/include")))))
+ (setq flycheck-clang-include-path (delete-dups (append
+ flycheck-clang-include-path
(list (concat (projectile-project-root) "lib/rapidjson/include"))))))))))