Advertisement
and_cesbo

Sublime Text 2 Config

Nov 22nd, 2013
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "folders":
  3.     [
  4.         {
  5.             "file_exclude_patterns":
  6.             [
  7.                 ".hg*",
  8.                 ".git*",
  9.                 "Astra.sublime-*"
  10.             ],
  11.             "path": "/Volumes/Projects/Astra/Public"
  12.         }
  13.     ],
  14.     "settings":
  15.     {
  16.         "sublimeclang_options":
  17.         [
  18.             "-I${folder:${project_path:main.c}}/asc",
  19.             "-I${folder:${project_path:main.c}}/lua",
  20.             "-I${folder:${project_path:main.c}}",
  21.             "-I${folder:${project_path:main.c}}/contrib/build/ffmpeg",
  22.             "-Wno-deprecated-declarations",
  23.             "-std=iso9899:1999"
  24.         ],
  25.         "rulers": [ 101 ],
  26.         "wrap_width": 100
  27.     },
  28.     "build_systems":
  29.     [
  30.         {
  31.             "name": "Astra",
  32.             "working_dir": "${project_path}",
  33.             "cmd": [ "make" ],
  34.             "variants":
  35.             [
  36.                 {
  37.                     "name": "Configure",
  38.                     "cmd": [ "${project_path}/configure.sh" ]
  39.                 },
  40.                 {
  41.                     "name": "Deploy",
  42.                     "cmd": [ "/Volumes/Projects/deploy.sh", "${project_path}", "$file" ]
  43.                 },
  44.                 {
  45.                     "name": "Clean",
  46.                     "cmd": [ "make", "clean" ]
  47.                 },
  48.                 {
  49.                     "name": "DistClean",
  50.                     "cmd": [ "make", "distclean" ]
  51.                 }
  52.             ]
  53.         }
  54.     ]
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement