From 1fe273a2120751ef5408a8cf9f78d1e26e180246 Mon Sep 17 00:00:00 2001 From: Timothee 'TTimo' Besset Date: Sun, 19 Feb 2023 15:34:12 -0600 Subject: [PATCH] basic visual studio code project for linux work --- .vscode/launch.json | 15 +++++++++++++++ .vscode/tasks.json | 17 +++++++++++++++++ gtkradiant-flatpak.code-workspace | 11 +++++++++++ 3 files changed, 43 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 gtkradiant-flatpak.code-workspace diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..df32bdb1 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..8aa9f7e3 --- /dev/null +++ b/.vscode/tasks.json @@ -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 + } + } + ] +} diff --git a/gtkradiant-flatpak.code-workspace b/gtkradiant-flatpak.code-workspace new file mode 100644 index 00000000..46895f45 --- /dev/null +++ b/gtkradiant-flatpak.code-workspace @@ -0,0 +1,11 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../io.github.TTimo.GtkRadiant" + } + ], + "settings": {} +} \ No newline at end of file