29 lines
479 B
Plaintext
29 lines
479 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": ".",
|
|
"folder_exclude_patterns": ["*bin*"],
|
|
"binary_file_patterns": ["*.bin"]
|
|
},
|
|
]
|
|
}
|