diff options
| author | Shishu the Dragon <183069616+ShishuTheDragon@users.noreply.github.com> | 2026-02-26 14:22:57 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-26 01:22:57 +0000 |
| commit | 97d4cc288191d45fde4a9ed0c92a62fe026244dd (patch) | |
| tree | 0167e27678339f1400173395006cb3c57eb0e3a2 | |
| parent | 2d74552d0589543af88e7e1db80f563a5be37974 (diff) | |
Dev: Mac/Linux compat for VS Code tasks (#6211)develop-copper
| -rw-r--r-- | .vscode/tasks.json | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index be763065e..cd2cc288e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,14 +9,24 @@ "-S", ".", "-B", - "build/x64", + "build-cmake", "-G", - "Visual Studio 17 2022", - "-T", - "v143", - "-A", - "x64" + "Ninja" ], + "windows": { + "args": [ + "-S", + ".", + "-B", + "build/x64", + "-G", + "Visual Studio 17 2022", + "-T", + "v143", + "-A", + "x64" + ] + }, "group": "build", "problemMatcher": [] }, @@ -26,10 +36,18 @@ "command": "cmake", "args": [ "--build", - "./build/x64", + "build-cmake", "--target", "GenerateSohOtr" ], + "windows": { + "args": [ + "--build", + "./build/x64", + "--target", + "GenerateSohOtr" + ] + }, "group": "build", "problemMatcher": [] }, @@ -39,8 +57,14 @@ "command": "cmake", "args": [ "--build", - "./build/x64" + "build-cmake" ], + "windows": { + "args": [ + "--build", + "./build/x64" + ] + }, "group": { "kind": "build", "isDefault": true @@ -58,4 +82,4 @@ ] } ] -}
\ No newline at end of file +} |
