diff options
Diffstat (limited to '.subl/swift.sublime-project')
-rw-r--r-- | .subl/swift.sublime-project | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/.subl/swift.sublime-project b/.subl/swift.sublime-project index 464eaf3..5746207 100644 --- a/.subl/swift.sublime-project +++ b/.subl/swift.sublime-project @@ -4,7 +4,7 @@ [ { "path": "..", - "folder_exclude_patterns": ["tmp", ".sconf_temp", ".settings", "Swift.app"], + "folder_exclude_patterns": ["tmp", ".sconf_temp", ".settings", "Swift.app", "3rdParty"], "file_exclude_patterns": [".cproject", ".project", ".sconsign.dblite", "*~", "config.log", "*.o"] } ], @@ -12,5 +12,18 @@ { "tab_size": 4, "translate_tabs_to_spaces": false - } + }, + "build_systems": + [ + { + "name": "Scons", + "cmd" : ["./scons"], + "working_dir": ".." + }, + { + "name": "Scons test", + "cmd" : ["./scons", "check=1"], + "working_dir": ".." + } + ] } |