mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-04-23 08:14:31 +00:00
Dev: Mac/Linux compat for VS Code tasks (#6211)
This commit is contained in:
parent
2d74552d05
commit
97d4cc2881
42
.vscode/tasks.json
vendored
42
.vscode/tasks.json
vendored
|
|
@ -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 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue