aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-21 23:42:30 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-21 23:42:30 +0100
commit8a78e678b7df0bf8221280f0058e2db0381b3ffa (patch)
treeb51ff90408c1644ea703046a30a1bcbaf985e9a0 /.dir-locals.el
parent3115da468b465238b5d5c09cc30352dcb3b00370 (diff)
downloadYAGE-8a78e678b7df0bf8221280f0058e2db0381b3ffa.tar.gz
YAGE-8a78e678b7df0bf8221280f0058e2db0381b3ffa.zip
#11: Building, #10: Added 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 bb978ba8..ef9a1a46 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -15,6 +15,9 @@
(setq company-clang-arguments (delete-dups (append
company-clang-arguments
(list (concat "-I" (projectile-project-root) "lib/glfw/include")))))
+ (setq company-clang-arguments (delete-dups (append
+ company-clang-arguments
+ (list (concat "-I" (projectile-project-root) "lib/glad/include")))))
(setq flycheck-clang-include-path (delete-dups (append
flycheck-clang-include-path
(list (concat (projectile-project-root) "yage")))))
@@ -29,4 +32,7 @@
(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/glad/include")))))
+ (setq flycheck-clang-include-path (delete-dups (append
+ flycheck-clang-include-path
(list (concat (projectile-project-root) "lib/rapidjson/include"))))))))))