-
Notifications
You must be signed in to change notification settings - Fork 1
/
Steppable.sublime-project
89 lines (89 loc) · 2.48 KB
/
Steppable.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
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
{
"folders":
[
{
"path": ".",
},
{
"path": "~/Desktop/Steppable.wiki"
},
],
"debugger_configurations":
[
{
"type": "lldb",
"request": "launch",
"name": "Add",
"program": "${folder}/build/src/add",
"args": ["1", "9", "+steps", "+profile"],
"cwd": "${folder}/build",
"pre_debug_task": "CMake Build",
},
{
"type": "lldb",
"request": "launch",
"name": "Subtract",
"program": "${folder}/build/src/subtract",
"args": ["32", "19", "+steps"],
"cwd": "${folder}/build/src",
"pre_debug_task": "CMake Build",
},
{
"type": "lldb",
"request": "launch",
"name": "Power",
"program": "${folder}/build/src/power",
"args": ["32", "19", "+steps"],
"cwd": "${folder}/build",
"pre_debug_task": "CMake Build",
},
{
"type": "lldb",
"request": "launch",
"name": "Comparison",
"program": "${folder}/build/src/comparison",
"args": ["4", "5"],
"cwd": "${folder}/build",
"pre_debug_task": "CMake Build",
},
{
"type": "lldb",
"request": "launch",
"name": "Division",
"program": "${folder}/build/src/division",
"args": ["4", "5"],
"cwd": "${folder}/build",
"pre_debug_task": "CMake Build",
},
{
"type": "lldb",
"request": "launch",
"name": "Multiply",
"program": "${folder}/build/src/multiply",
"args": ["4", "5"],
"cwd": "${folder}/build/src",
"pre_debug_task": "CMake Build",
}
],
"debugger_tasks":
[
{
"name": "CMake Build",
"cmd": "ninja",
"working_dir": "$project_path/build",
},
{
"name": "Ninja Clean",
"cmd": ["ninja", "clean"],
"working_dir": "$project_path/build",
},
{
"name": "Format everything",
"shell_cmd": "find . -name '*.hpp' -o -name '*.cpp' | xargs clang-format -i",
"working_dir": "$project_path",
}
],
"settings": {
"SublimeLinter.linters.clangtidy.compile_commands": "${project_path}/build",
},
}