You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
531 B
22 lines
531 B
(cond
|
|
((string-equal system-type "windows-nt") ; Microsoft Windows
|
|
(progn
|
|
((c-mode .
|
|
((company-clang-arguments . ("-IW:/include"))
|
|
(flycheck-clang-include-path . ("W:/include")))
|
|
)
|
|
((c++-mode . ((mode . c))))
|
|
)
|
|
))
|
|
((string-equal system-type "gnu/linux") ; linux
|
|
(progn
|
|
((c-mode .
|
|
((company-clang-arguments . ("-I/mnt/Dev/Projects/symmetry/include"))
|
|
(flycheck-clang-include-path . ("/mnt/Dev/Projects/symmetry/include")))
|
|
)
|
|
((c++-mode . ((mode . c))))
|
|
)
|
|
)))
|
|
|
|
|
|
|
|
|