mirror of
https://github.com/ISpillMyDrink/OpenSuperClone.git
synced 2026-05-04 14:00:54 +00:00
Add some task configurations for VSCode.
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/src/**",
|
||||
"${workspaceFolder}/build/src/opensuperclone/**",
|
||||
"${workspaceFolder}/build/src/oscviewer/**"
|
||||
],
|
||||
"forcedInclude": [
|
||||
"${workspaceFolder}/build/src/opensuperclone/config.h",
|
||||
"${workspaceFolder}/build/src/oscviewer/config.h"
|
||||
],
|
||||
"cStandard": "c11"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"sanaajani.taskrunnercode"
|
||||
]
|
||||
}
|
||||
Vendored
-16
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"cmake.configureOnEdit": true,
|
||||
"cmake.configureOnOpen": true,
|
||||
|
||||
"cmake.sourceDirectory": "${workspaceFolder}",
|
||||
"cmake.buildDirectory": "${workspaceFolder}/build",
|
||||
"cmake.installPrefix": "${workspaceFolder}/debug",
|
||||
|
||||
"cmake.debugConfig": {
|
||||
|
||||
},
|
||||
|
||||
"cmake.configureSettings": {
|
||||
|
||||
}
|
||||
}
|
||||
Vendored
+62
@@ -0,0 +1,62 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
// Build Release.
|
||||
"label": "🔧 Build Release",
|
||||
"type": "shell",
|
||||
"linux": {
|
||||
"command": "./build.sh",
|
||||
},
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
// Package Release.
|
||||
"label": "✉️ Package Release",
|
||||
"type": "shell",
|
||||
"linux": {
|
||||
"command": "./package.sh",
|
||||
},
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
// Cleanup.
|
||||
"label": "💣 Cleanup",
|
||||
"type": "shell",
|
||||
"linux": {
|
||||
"command": "./clean.sh",
|
||||
},
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
// Install.
|
||||
"label": "📐 Install",
|
||||
"type": "shell",
|
||||
"linux": {
|
||||
"command": "./install.sh",
|
||||
},
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
// Uninstall.
|
||||
"label": "❌ Uninstall",
|
||||
"type": "shell",
|
||||
"linux": {
|
||||
"command": "./install.sh",
|
||||
},
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
||||
@@ -70,7 +70,7 @@ $ ./build.sh
|
||||
$ sudo ./release/bin/opensuperclone
|
||||
|
||||
# Run OSCViewer
|
||||
$ ./release/bin/osscviewer
|
||||
$ ./release/bin/oscviewer
|
||||
```
|
||||
|
||||
## ✏️ Changelog
|
||||
|
||||
Reference in New Issue
Block a user