mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
19 lines
501 B
JSON
19 lines
501 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Debug (Linux)",
|
||
|
"type": "cppdbg",
|
||
|
"request": "launch",
|
||
|
"program": "${workspaceFolder}/bin/fusion",
|
||
|
"cwd": "${workspaceFolder}"
|
||
|
},
|
||
|
{
|
||
|
"name": "Debug (Windows)",
|
||
|
"type": "cppvsdbg",
|
||
|
"request": "launch",
|
||
|
"program": "${workspaceFolder}/bin/winfusion.exe",
|
||
|
"cwd": "${workspaceFolder}"
|
||
|
}
|
||
|
]
|
||
|
}
|