mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-20 09:52:50 -08:00
3357543538
* Added vs code build tasks * Fix typo in BUILDING.md regarding CMake Tools plugin * Add "Build All" task to VS Code configuration
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"
|
|
]
|
|
}
|
|
]
|
|
} |