basic visual studio code project for linux work

This commit is contained in:
Timothee 'TTimo' Besset 2023-02-19 15:34:12 -06:00
parent 3a85a21427
commit 1fe273a212
3 changed files with 43 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "radiant",
"request": "launch",
"type": "cppdbg",
"cwd": "${workspaceFolder}/install",
"program": "${workspaceFolder}/install/radiant.bin"
}
]
}

17
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "debug",
"type": "shell",
"command": "scons config=debug --no-packs --jobs=12",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

View File

@ -0,0 +1,11 @@
{
"folders": [
{
"path": "."
},
{
"path": "../io.github.TTimo.GtkRadiant"
}
],
"settings": {}
}