forked from glotzerlab/hoomd-blue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hoomd.sublime-project
67 lines (64 loc) · 2.35 KB
/
hoomd.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
{
"folders":
[
{
"path": ".",
// ignore files that are not likely to be modified by hand
"folder_exclude_patterns": [".kdev4", ".settings", "build*"],
"file_exclude_patterns": [".*project", "*.sublime-workspace", "*.kdev4"]
}
],
"settings":
{
// set auto indent for 4 spaces and switch to dumb auto modes
"tab_size": 4,
"auto_match_enabled": false,
"ensure_newline_at_eof_on_save": true,
"indent_to_bracket": true,
"smart_indent": false,
"spell_check": true,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": false,
"rulers": [120],
"detect_indentation": false
},
"build_systems":
[
{
"name": "Build Project (make)",
"cmd": ["make", "-j4"],
"working_dir": "${project_path}/build",
// this regex first ignores all messages that start with citelist
// then it matches strings like: filename:line message OR filename(line): message
// the first is output by g++, the latter by nvcc
"file_regex": "^(?!citelist)(..[^:(]*)[:(]([0-9]+)[:)]?([0-9]+)?:? (.*)$",
// include latex and macports on the path in osx
"osx":
{
"path": "/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/X11/bin:/usr/texbin"
},
// add a make clean option
"variants":
[
{
"cmd": ["make", "clean"],
"name": "Clean"
}
]
},
{
"name": "Build Project (ninja)",
"cmd": ["ninja"],
"working_dir": "${project_path}/build",
// this regex first ignores all messages that start with citelist
// then it matches strings like: filename:line message OR filename(line): message
// the first is output by g++, the latter by nvcc
"file_regex": "^(?!citelist)(..[^:(]*)[:(]([0-9]+)[:)]?([0-9]+)?:? (.*)$",
// include latex and macports on the path in osx
"osx":
{
"path": "/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/X11/bin:/usr/texbin"
}
}
]
}