Files
odit/odit.sublime-project

29 lines
490 B
Plaintext

{
"debugger_configurations":
[
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${project_path}/src.bin",
"args": [],
"cwd": "${project_path}"
},
],
"build_systems": [
{
"cmd": ["odin", "build", "src", "-debug", "-o:none"],
"name": "odit",
"selector": "source.odin",
"working_dir": "${project_path}"
}
],
"folders": [
{
"path": ".",
"folder_exclude_patterns": ["*bin*"],
"binary_file_patterns": ["*.bin"]
},
]
}