summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 30ec06a57b6ef96384db64e8b35a39d4d3830198 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")

((c-mode .
  ((eval .
	 (set (make-local-variable 'directory-of-current-dir-locals-file)
	      (file-name-directory (locate-dominating-file default-directory ".dir-locals.el"))
	      )
	 )
   (eval .
	 (set (make-local-variable 'include-directories)
	      (list

	       ;; top directory
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "./"))

	       ;; libisc
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isc/unix/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isc/pthreads/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isc/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isc"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isc/netmgr"))

	       ;; libdns
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/dns/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/dns"))

	       ;; libisccc
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isccc/include"))

	       ;; libisccfg
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/isccfg/include"))

	       ;; libns
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/ns/include"))

	       ;; libirs
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/irs/include"))

	       ;; libbind9
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "lib/bind9/include"))

	       ;; bin
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/check"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/confgen/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/confgen"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/confgen/include"))	       
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/dig/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/named/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/named/unix/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/rndc/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/dnssec/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/named/include"))
	       (expand-file-name
		(concat directory-of-current-dir-locals-file "bin/rndc/include"))

	       (expand-file-name "/usr/local/opt/openssl@1.1/include")
	       (expand-file-name "/usr/local/opt/libxml2/include/libxml2")
	       (expand-file-name "/usr/local/include")
	       )
	      )
	 )

   (eval setq flycheck-clang-include-path include-directories)
   (eval setq flycheck-cppcheck-include-path include-directories)
   )
  ))