forked from DevSolar/pdclib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdclib.sublime-project
More file actions
44 lines (40 loc) · 870 Bytes
/
pdclib.sublime-project
File metadata and controls
44 lines (40 loc) · 870 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"folders":
[
{
"name": "PDCLib",
"path": ".",
"file_exclude_patterns": ["*.o", "*_t", "*_r", "*.exe"]
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": true,
"rulers": [ 80 ],
"use_tab_stops": true
},
"build_systems":
[
{
"name": "PDCLib Jam",
"working_dir": "$project_path",
"cmd": ["jam", "-qj4"],
"variants": [
{
"cmd": ["jam", "test"],
"name": "Run"
},
{
"cmd": ["jam", "regtest"],
"name": "Regtest"
}
],
"windows": {
"env": {
"JAM_TOOLSET": "MINGW"
}
}
}
]
}