From b55d0fcafa9647487bdf9dd20e3bbc3447fcfde1 Mon Sep 17 00:00:00 2001 From: Cart <81428538+Cartrigger@users.noreply.github.com> Date: Thu, 7 Mar 2024 01:54:20 -0500 Subject: [PATCH] Delete .vscode I don't want to be that guy, but here I am --- .vscode/tasks.json | 64 ---------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 3687eab4..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Configure Waf for Debug 32-bit", - "type": "shell", - "command": "./waf configure -T debug --prefix=build/out/", - "problemMatcher": [], - "windows": { - "command": "./waf.bat configure -T debug --prefix=build/out/" - }, - "osx": { - "command": "python3 waf configure -T debug --prefix=build/out/" - } - }, - { - "label": "Configure Waf for Debug 64-bit", - "type": "shell", - "command": "./waf configure -T debug --64bits --prefix=build/out/", - "problemMatcher": [], - "windows": { - "command": "./waf.bat configure -T debug --64bits --prefix=build/out/" - }, - "osx": { - "command": "python3 waf configure -T debug --64bits --prefix=build/out/" - } - }, - { - "label": "Configure Waf for Debug on Android (NDK r10e)", - "type": "shell", - "command": "./waf configure -T debug --android=armeabi-v7a-hard,4.9,21", - "problemMatcher": [], - "windows": { - "command": "./waf.bat configure -T debug --android=armeabi-v7a-hard,4.9,21" - }, - "osx": { - "command": "python3 waf configure -T debug --android=armeabi-v7a-hard,4.9,21" - } - }, - { - "label": "Build", - "type": "shell", - "command": "./waf install", - "problemMatcher": { - "base": "$gcc", - "fileLocation": ["relative", "${workspaceFolder}/build"] - }, - "group": { - "kind": "build", - "isDefault": true - }, - "windows": { - "command": "./waf.bat install", - "problemMatcher": { - "base": "$msCompile", - "fileLocation": ["relative", "${workspaceFolder}/build"] - } - }, - "osx": { - "command": "python3 waf install" - } - } - ] -}