Enable parallel tests.
[hoomd-blue.git] / hoomd.sublime-project
blob513c2cf9415ec429a5baf102d63c0eeba7407e4c
2         "folders":
3         [
4                 {
5                         "path": ".",
6             // ignore files that are not likely to be modified by hand
7             "folder_exclude_patterns": [".kdev4", ".settings",  "build*"],
8             "file_exclude_patterns": [".*project", "*.sublime-workspace", "*.kdev4"]
9                 }
10         ],
11     "settings":
12     {
13         // set auto indent for 4 spaces and switch to dumb auto modes
14         "tab_size": 4,
15         "auto_match_enabled": false,
16         "ensure_newline_at_eof_on_save": true,
17         "indent_to_bracket": true,
18         "smart_indent": false,
19         "spell_check": true,
20         "translate_tabs_to_spaces": true,
21         "trim_automatic_white_space": false,
22         "rulers": [120],
23         "detect_indentation": false
24     },
25     "build_systems":
26     [
27         {
28             "name": "Build Project",
29             "cmd": ["make", "-j4"],
30             "working_dir": "${project_path}/build",
31             // this regex first ignores all messages that start with citelist
32             // then it matches strings like: filename:line message OR filename(line): message
33             // the first is output by g++, the latter by nvcc
34             "file_regex": "^(?!citelist)(..[^:(]*)[:(]([0-9]+)[:)]?([0-9]+)?:? (.*)$",
35             
36             // include latex and macports on the path in osx
37             "osx":
38             {
39                 "path": "/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/X11/bin:/usr/texbin"
40             },
41             
42             // add a make clean option
43             "variants": 
44             [
45                 { 
46                     "cmd": ["make", "clean"],
47                     "name": "Clean"
48                 }
49             ]
50         }
51     ]