-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathide.el
More file actions
executable file
·28 lines (25 loc) · 861 Bytes
/
Copy pathide.el
File metadata and controls
executable file
·28 lines (25 loc) · 861 Bytes
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
;;; Package --- Summary
;;; Commentary:
;;; It sets cmake-ide variables
;;; Code:
(let-alist projects
(if (eq .FFJSON 't)
(progn (message "FFJSON already loaded"))
(progn
(setq projects '((FFJSON . 't)))
(setq CMakeProject "FFJSON")
(setq cmake-ide-build-dir
(concat ide-project-dir
"/build/Linux/x86_64/debug/"))
(setq cmake-ide-build-pool-dir cmake-ide-build-dir)
(make-directory cmake-ide-build-dir t)
(setq cmake-ide-cmake-args
(concat "-D_DEBUG=1 -DCMAKE_BUILD_TYPE=Debug "
"-DCMAKE_EXPORT_COMPILE_COMMANDS=1 "
"-DBUILD_TESTING=1"))
(setq MakeThreadCount 6)
(setq DebugTarget "TestFFJSON")
(setq TargetArguments "")
(message "FFJSON emacs project loaded."))))
(provide 'FFJSON)
;;; ide.el ends here