lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

C Single File.sublime-build (345B)


      1 {
      2 	"shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\"",
      3 	"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
      4 	"working_dir": "${file_path}",
      5 	"selector": "source.c",
      6 
      7 	"variants":
      8 	[
      9 		{
     10 			"name": "Run",
     11 			"shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""
     12 		}
     13 	]
     14 }