Files
odit/odit.sublime-project
2025-12-09 12:03:35 -05:00

27 lines
399 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"],
"name": "odit",
"selector": "source.odin",
"working_dir": "${project_path}"
}
],
"folders": [
{
"path": "."
}
]
}