forked from ecmwf/magics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagics.sublime-project
55 lines (55 loc) · 958 Bytes
/
magics.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
{
"build_systems":
[
{
"cmd":
[
"make"
],
"file_regex": "([/\\w\\-\\.]+):(\\d+):(\\d+:)?",
"name": "Build",
"working_dir": "${project_path}/../../build/magics-develop/debug"
},
{
"file_regex": "([/\\w\\-\\.]+):(\\d+):(\\d+:)?",
"name": "magics",
"shell_cmd": "make",
"syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
"variants":
[
{
"name": "clean",
"shell_cmd": "make clean"
}
],
"working_dir": "${project_path}/../../build/magics"
},
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python3\" -u \"$file\""
}
],
"folders":
[
{
"path": "."
}
],
"settings":
{
"ClangFormat":
{
"format_on_save": true
},
"cmake":
{
"build_folder": "${project_path}/../../build/magics",
"command_line_overrides":
{
"DEVELOPER_MODE": 1
}
}
}
}