Update sublime text project

This commit is contained in:
Baudouin Raoult 2017-03-17 18:46:27 +00:00
parent f3ff058a6e
commit 6ad6e64b44
1 changed files with 39 additions and 16 deletions

View File

@ -1,18 +1,41 @@
{ {
"folders": [ "build_systems":
{ [
"path": ".", {
"follow_symlinks": true "file_regex": "([/\\w\\-\\.]+):(\\d+):(\\d+:)?",
} "name": "eccodes",
], "shell_cmd": "make",
"build_systems": [ "syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
{ "variants":
"working_dir": "${project_path}/../../build/eccodes", [
"cmd": [ {
"make" "name": "clean",
], "shell_cmd": "make clean"
"file_regex": "([/\\w\\-\\.]+):(\\d+):(\\d+:)?", },
"name": "ecbuild" ],
} "working_dir": "${project_path}/../../build/eccodes"
] },
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"cmake":
{
"build_folder": "${project_path}/../../build/eccodes",
"command_line_overrides":
{
"DEVELOPER_MODE": 1,
"ENABLE_MEMFS": 1
}
},
"folders":
[
{
"follow_symlinks": true,
"path": "."
}
]
} }