forked from ev3dev/ev3devKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.sublime-project
40 lines (38 loc) · 1.1 KB
/
demo.sublime-project
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
{
"folders":
[
{
"follow_symlinks": true,
"path": "."
}
],
"build_systems":
[
{
"name": "Build desktop demo",
"cmd": [ "make", "-C", "$project_path/build-desktop-demo"],
"file_regex": "([^:]+):(\\d+)[\\.:](?:(\\d+)-\\d+\\.\\d+)?:? (?:(?:error|warning|note): )?(.*)",
"variants":
[
{
"name": "Run",
"cmd": [ "make", "-C", "$project_path/build-desktop-demo", "run" ],
"env": {
"G_MESSAGES_DEBUG": "all"
}
},
{
"name": "Clean",
"cmd": [ "make", "-C", "$project_path/build-desktop-demo", "clean" ],
}
]
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": true,
"sublimegdb_commandline": "gdb --interpreter=mi ev3devKit-demo",
"sublimegdb_workingdir": "${folder:${project_path:build-desktop-demo/ev3devKit-demo}}"
}
}