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