Dev: Mac/Linux compat for VS Code tasks (#6211)

This commit is contained in:
Shishu the Dragon 2026-02-26 14:22:57 +13:00 committed by GitHub
parent 2d74552d05
commit 97d4cc2881
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

42
.vscode/tasks.json vendored
View file

@ -9,14 +9,24 @@
"-S", "-S",
".", ".",
"-B", "-B",
"build/x64", "build-cmake",
"-G", "-G",
"Visual Studio 17 2022", "Ninja"
"-T",
"v143",
"-A",
"x64"
], ],
"windows": {
"args": [
"-S",
".",
"-B",
"build/x64",
"-G",
"Visual Studio 17 2022",
"-T",
"v143",
"-A",
"x64"
]
},
"group": "build", "group": "build",
"problemMatcher": [] "problemMatcher": []
}, },
@ -26,10 +36,18 @@
"command": "cmake", "command": "cmake",
"args": [ "args": [
"--build", "--build",
"./build/x64", "build-cmake",
"--target", "--target",
"GenerateSohOtr" "GenerateSohOtr"
], ],
"windows": {
"args": [
"--build",
"./build/x64",
"--target",
"GenerateSohOtr"
]
},
"group": "build", "group": "build",
"problemMatcher": [] "problemMatcher": []
}, },
@ -39,8 +57,14 @@
"command": "cmake", "command": "cmake",
"args": [ "args": [
"--build", "--build",
"./build/x64" "build-cmake"
], ],
"windows": {
"args": [
"--build",
"./build/x64"
]
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -58,4 +82,4 @@
] ]
} }
] ]
} }