mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-31 07:20:14 -05:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Setup CMake Project",
|
||
|
"type": "shell",
|
||
|
"command": "cmake",
|
||
|
"args": [
|
||
|
"-S",
|
||
|
".",
|
||
|
"-B",
|
||
|
"build/x64",
|
||
|
"-G",
|
||
|
"Visual Studio 17 2022",
|
||
|
"-T",
|
||
|
"v143",
|
||
|
"-A",
|
||
|
"x64"
|
||
|
],
|
||
|
"group": "build",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Generate SOH OTR",
|
||
|
"type": "shell",
|
||
|
"command": "cmake",
|
||
|
"args": [
|
||
|
"--build",
|
||
|
"./build/x64",
|
||
|
"--target",
|
||
|
"GenerateSohOtr"
|
||
|
],
|
||
|
"group": "build",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Build Project",
|
||
|
"type": "shell",
|
||
|
"command": "cmake",
|
||
|
"args": [
|
||
|
"--build",
|
||
|
"./build/x64"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"dependsOn": ["Generate SOH OTR"],
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Build All",
|
||
|
"dependsOrder": "sequence",
|
||
|
"dependsOn": [
|
||
|
"Setup CMake Project",
|
||
|
"Generate SOH OTR",
|
||
|
"Build Project"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|