-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dir-locals.el
27 lines (27 loc) · 2.17 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
((nil . ((eval . (set (make-local-variable 'my-project-path)
(file-name-directory
(let ((d (dir-locals-find-file default-directory)))
(if (stringp d) d (car d))))))))
(c++-mode . (
(flycheck-checker . c/c++-gcc)
(flycheck-c/c++-gcc-executable . "avr-gcc")
(eval . (setq flycheck-gcc-include-path
(list (expand-file-name "core/MegaCore/avr/variants/64-pin-avr" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/cores/MCUdude_corefiles" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/libraries/EEPROM/src" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/libraries/SPI/src" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/libraries/SoftwareSerial/src" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/libraries/Timer/src" (projectile-project-root))
(expand-file-name "core/MegaCore/avr/libraries/Wire/src" (projectile-project-root))
(expand-file-name "lib/Button" (projectile-project-root))
(expand-file-name "lib/CDS" (projectile-project-root))
(expand-file-name "lib/DHT" (projectile-project-root))
(expand-file-name "lib/HT16K33" (projectile-project-root))
(expand-file-name "lib/KappaDateTime" (projectile-project-root))
(expand-file-name "lib/KappaGPS" (projectile-project-root))
(expand-file-name "lib/KappaSegment" (projectile-project-root))
(expand-file-name "lib/NoInteraction" (projectile-project-root))
(expand-file-name "lib/Rtc" (projectile-project-root))
(expand-file-name "lib/VariableTimedAction/src" (projectile-project-root)))
))
)))