-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunity-custom-settings.el
97 lines (95 loc) · 2.69 KB
/
unity-custom-settings.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
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
91
92
93
94
95
96
97
(defcustom unity-rake-command "rake"
"The command for rake"
:type 'string
:group 'unity-mode)
(defcustom unity-project-root-dir
"~/.emacs.d/martyn/martyn/unity-mode/ceedling/trunk/examples/temp_sensor/"
"Project Root Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-ceedling-root-dir
(concat unity-project-root-dir "../../")
"Ceedling Root Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-unity-root-dir
(concat unity-ceedling-root-dir "vendor/unity/")
"Unity Root Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-cmock-root-dir
(concat unity-ceedling-root-dir "vendor/cmock/")
"CMock Root Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-plugins-dir
(concat unity-ceedling-root-dir "plugins/")
"Plugins Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-custom-plugins-dir
(concat unity-ceedling-root-dir "custom-plugins/")
"Custom Plugins Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-src-dir
(concat unity-project-root-dir "src/")
"Source Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-test-dir
(concat unity-project-root-dir "test/")
"Test Files Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-header-dir
(concat unity-project-root-dir "src/")
"Header Files Directory"
:type 'string
:group 'unity-mode)
(defcustom
unity-mocks-dir
(concat unity-project-root-dir "mocks/")
"Mock Files Directory"
:type 'string
:group 'unity-mode)
(defcustom
unity-build-dir
(concat unity-ceedling-root-dir "build/")
"Build Files Directory"
:type 'string
:group 'unity-mode)
(defcustom unity-test-file-prefix "Test" "Test File Prefix"
:type 'string
:group 'unity-mode)
(defcustom unity-mock-file-prefix "mock_" "Mock File Prefix"
:type 'string
:group 'unity-mode)
(defcustom unity-model-file-suffix "Model"
"Model File Suffix (as in some[_model].c)"
:type 'string
:group 'unity-mode)
(defcustom unity-conductor-file-suffix "Conductor"
(concat
"Conductor File Suffix (as in some[unity-conductor-file-suffix].c)")
:type 'string
:group 'unity-mode)
(defcustom unity-hardware-file-suffix "Hardware"
(concat
"Hardware File Suffix (as in some[unity-hardware-file-suffix].c)")
:type 'string
:group 'unity-mode)
(defcustom unity-configurator-file-suffix "Configurator"
(concat
"Configurator File Suffix (as in some[unity-configurator-file-suffix].c)")
:type 'string
:group 'unity-mode)
(defcustom unity-src-file-extension ".c"
"C Source File Extension"
:type 'string
:group 'unity-mode)
(defcustom unity-header-file-extension ".h"
"C Header File Extension"
:type 'string
:group 'unity-mode)
(provide 'unity-custom-settings)