gs_bucket_array

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README

gs_project.sublime-project (1851B)


      1 {
      2 	"folders":
      3 	[
      4 		{
      5 			"path": "./../../../gs_project_template"
      6 		}
      7 	],
      8 	"build_systems":
      9     [
     10         {
     11             "name": "GS: Build Debug (GCC/MINGW)",
     12             "osx": {
     13             	"cmd": ["echo Building... && cd $folder && bash ./proc/osx/gcc_dbg.sh"],
     14             	"shell": true
     15             },
     16             "linux": {
     17             	"cmd": ["echo Building... && cd $folder && bash ./proc/linux/gcc_dbg.sh"],
     18             	"shell": true
     19             },
     20             "windows": {
     21             	"cmd": ["echo Building... && cd $folder && bash ./proc/win/mingw_dbg.sh"],
     22             	"shell": true
     23             }
     24         },
     25         {
     26             "name": "GS: Build Release (GCC/MINGW)",
     27             "osx": {
     28             	"cmd": ["echo Building... && cd $folder && bash ./proc/osx/gcc_rel.sh"],
     29             	"shell": true
     30             },
     31             "linux": {
     32             	"cmd": ["echo Building... && cd $folder && bash ./proc/linux/gcc_rel.sh"],
     33             	"shell": true
     34             },
     35             "windows": {
     36             	"cmd": ["echo Building... && cd $folder && bash ./proc/win/mingw_rel.sh"],
     37             	"shell": true
     38             }
     39         },
     40         {
     41             "name": "GS: Build Rel-Debug (GCC/MINGW)",
     42             "osx": {
     43             	"cmd": ["echo Building... && cd $folder && bash ./proc/osx/gcc_rdbg.sh"],
     44             	"shell": true
     45             },
     46             "linux": {
     47             	"cmd": ["echo Building... && cd $folder && bash ./proc/linux/gcc_rdbg.sh"],
     48             	"shell": true
     49             },
     50             "windows": {
     51             	"cmd": ["echo Building... && cd $folder && bash ./proc/win/mingw_rdbg.sh"],
     52             	"shell": true
     53             }
     54         },
     55         {
     56         	"name": "GS: Run",
     57         	"osx": {
     58             	"cmd": ["cd $folder && ./bin/App"],
     59             	"shell": true
     60         	}
     61         }
     62     ]
     63 }