bindgen2.sublime-project (732B)
1 { 2 "folders": 3 [ 4 { 5 "path": ".." 6 }, 7 { 8 "path": "C:\\sdk\\odin\\core" 9 }, 10 { 11 "path": "C:\\sdk\\odin\\base" 12 } 13 ], 14 "build_systems": 15 [ 16 { 17 "file_regex": "^(.+)\\(([0-9]+):([0-9]+)\\) (.+)$", 18 "name": "Bindgen2", 19 "working_dir": "$project_path/..", 20 "shell_cmd": "odin build src2 -out:bindgen.exe && bindgen src2/examples/tester", 21 "variants": [ 22 { 23 "name": "raylib", 24 "shell_cmd": "odin build src2 -out:bindgen.exe && bindgen examples/raylib", 25 }, 26 { 27 "name": "tester", 28 "shell_cmd": "odin build src2 -out:bindgen.exe && bindgen src2/examples/tester", 29 }, 30 ], 31 } 32 ], 33 "settings": 34 { 35 "auto_complete": false, 36 "LSP": 37 { 38 "odin": 39 { 40 "enabled": true, 41 }, 42 }, 43 }, 44 }