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"]
13 // set auto indent for 4 spaces and switch to dumb auto modes
15 "auto_match_enabled": false,
16 "ensure_newline_at_eof_on_save": true,
17 "indent_to_bracket": true,
18 "smart_indent": false,
20 "translate_tabs_to_spaces": true,
21 "trim_automatic_white_space": false,
23 "detect_indentation": false
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]+)?:? (.*)$",
36 // include latex and macports on the path in osx
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"
42 // add a make clean option
46 "cmd": ["make", "clean"],