Files
autosample/autosample.sublime-project
2026-02-25 15:20:47 -05:00

31 lines
806 B
Plaintext

{
"folders": [
{
"path": ".",
"folder_exclude_patterns": ["build", ".vscode", ".vs"]
}
],
"build_systems": [
{
"name": "nob",
"shell_cmd": "nob.exe",
"working_dir": "$project_path",
"file_regex": "^(.+?)\\(([0-9]+)\\):? *(error|fatal error|warning) *\\w+: *(.*)$",
"variants": [
{
"name": "Debug",
"shell_cmd": "nob.exe debug"
},
{
"name": "Clean",
"shell_cmd": "nob.exe clean"
},
{
"name": "Bootstrap",
"shell_cmd": "cl /nologo nob.c"
}
]
}
]
}