-
Notifications
You must be signed in to change notification settings - Fork 0
/
soar.sublime-project
59 lines (57 loc) · 1.08 KB
/
soar.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
{
"build_systems":
[
{
"cmd":
[
"make"
],
"name": "Linux - Build SOAR",
"working_dir": "${project_path}/build/linux",
"variants": [
{
"cmd": ["make"],
"name": "Mac OS X - Build SOAR",
"working_dir": "${project_path}/build/mac"
},
{
"cmd": ["make"],
"name": "Windows - Build SOAR",
"working_dir": "${project_path}/build/windows"
},
{
"name": "Linux - Clean SOAR",
"cmd": ["make", "clean"],
"working_dir": "${project_path}/build/linux"
},
{
"name": "Mac OS X - Clean SOAR",
"cmd": ["make", "clean"],
"working_dir": "${project_path}/build/mac"
},
{
"name": "Windows - Clean SOAR",
"cmd": ["make", "clean"],
"working_dir": "${project_path}/build/windows"
},
{
"name": "Generate Documentation",
"cmd": ["./execute_doxygen.sh"],
"working_dir": "${project_path}/scripts"
}
]
}
],
"folders":
[
{
"path": "~/Dropbox/GitHub/SOAR"
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": true,
"line_endings": "unix"
}
}