gutter_runner/project.sublime-project
2025-01-02 14:18:22 +04:00

38 lines
619 B
Plaintext

{
"folders":
[
{
"path": ".",
}
],
"build_systems":
[
{
"file_regex": "^(.+)\\(([0-9]+):([0-9]+)\\) (.+)$",
"name": "Game template",
"windows": {
"working_dir": "$project_path",
"shell_cmd": "build_hot_reload.bat && start game_hot_reload.exe",
},
"osx": {
"working_dir": "$project_path",
"shell_cmd": "./build_hot_reload.sh && ./game_hot_reload.bin &",
},
"linux": {
"working_dir": "$project_path",
"shell_cmd": "./build_hot_reload.sh && ./game_hot_reload.bin &",
}
}
],
"settings":
{
"LSP":
{
"odin":
{
"enabled": true,
},
},
},
}