Skip to content

Instantly share code, notes, and snippets.

@dwilliamson
Created November 20, 2012 23:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dwilliamson/4122002 to your computer and use it in GitHub Desktop.
Save dwilliamson/4122002 to your computer and use it in GitHub Desktop.
Simple SublimeClang project settings
{
"build_systems":
[
{
"cmd": "pib.bat",
"file_regex": "^\\s*(..[^\\(\n]*)\\(([0-9]+)\\)() : (.*)$",
"name": "PiB C++",
"path": "D:/dev/projects/PiB/Python",
"selector": "source.c++,source.c",
"working_dir": "D:/dev/projects/Star/"
},
],
"folders":
[
{
"name": "C++ Client",
"path": "src/CppClient"
},
{
"path": "pub/Browser"
},
],
"settings":
{
"sublimeclang_enable_fast_completions": false,
"sublimeclang_show_output_panel": false,
"sublimeclang_options":
[
"-m32",
"-Wall",
"-Wno-missing-braces",
"-Wno-missing-field-initializers",
"-Wno-unknown-pragmas",
"-Wno-unneeded-internal-declaration",
"-ferror-limit=0",
"-fdelayed-template-parsing",
"-Id:/dev/projects/Star/src/CppClient/",
"-Id:/dev/projects/Star/src/SDK/bullet/src",
"-Ic:/Program Files (x86)/Microsoft SDKs/Windows/v7.0A/Include"
],
"rulers":
[
120
],
"tab_size": 4,
"translate_tabs_to_spaces": false,
"word_wrap": false,
"wrap_width": 120
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment