ttt-ce/.vscode/launch.json

18 lines
450 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"command": "steam-run ./target/debug/ttt-ce",
"name": "Run program",
"request": "launch",
"type": "node-terminal"
},
{
"command": "nix-shell --run 'cargo run'",
"name": "Build and Run program",
"request": "launch",
"type": "node-terminal"
}
],
"compounds": []
}