We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e91a0 commit ff77433Copy full SHA for ff77433
lisp/init-local.el
@@ -14,6 +14,16 @@
14
(default-directory "/ssh:3sec.arthur.li:")) ;; TODO: prompt for user and host
15
(shell)))
16
17
+;; Include paths for cmake-ide
18
+;; see: https://langui.sh/2015/07/24/osx-clang-include-lib-search-paths/
19
+(setq cmake-ide-flags-c '("-I/usr/local/include"
20
+ "-I/Library/Developer/CommandLineTools/usr/lib/clang/7.3.0/include"
21
+ "-I/Library/Developer/CommandLineTools/usr/include"
22
+ "-I/usr/include"
23
+ "-DNDEBUG")
24
+ cmake-ide-flags-c++ (cons "-I/Library/Developer/CommandLineTools/usr/include/c++/v1"
25
+ cmake-ide-flags-c))
26
+
27
;; Eglot
28
(with-eval-after-load 'eglot
29
(setq eglot-confirm-server-initiated-edits nil))
0 commit comments