Skip to content

Commit

Permalink
Merge pull request #3 from ValkScripter:init
Browse files Browse the repository at this point in the history
Add build, test, package, and workflow presets to CMake configuration
  • Loading branch information
ValkScripter authored Dec 20, 2024
2 parents 79a15f1 + 4e8560d commit f7f41d7
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,39 @@
],
"buildPresets": [
{
"name": "GCC",
"name": "Build",
"description": "",
"displayName": "",
"configurePreset": "GCC"
}
],
"testPresets": [
{
"name": "Test",
"description": "",
"displayName": "",
"configurePreset": "GCC"
}
],
"packagePresets": [
{
"name": "Package",
"description": "",
"displayName": "",
"configurePreset": "GCC"
}
],
"workflowPresets": [
{
"name": "Workflow",
"description": "",
"displayName": "",
"steps": [
{
"type": "configure",
"name": "GCC"
}
]
}
]
}
}

0 comments on commit f7f41d7

Please sign in to comment.