Skip to content

Commit

Permalink
Enable clang-16 local support
Browse files Browse the repository at this point in the history
  • Loading branch information
neatudarius committed Nov 11, 2024
1 parent 65fa683 commit b8ae10b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@
"displayName": "Clang 17",
"description": "Build with Clang 17 compilers",
"toolchainFile": "${sourceDir}/etc/clang-17-toolchain.cmake"
},
{
"name": "clang-16",
"inherits": "common",
"displayName": "Clang 16",
"description": "Build with Clang 16 compilers",
"toolchainFile": "${sourceDir}/etc/clang-16-toolchain.cmake"
}
],
"buildPresets": [
Expand Down Expand Up @@ -119,6 +126,11 @@
"name": "clang-17",
"inherits": "common",
"configurePreset": "clang-17"
},
{
"name": "clang-16",
"inherits": "common",
"configurePreset": "clang-16"
}
],
"testPresets": [
Expand Down Expand Up @@ -173,6 +185,11 @@
"name": "clang-17",
"inherits": "common",
"configurePreset": "clang-17"
},
{
"name": "clang-16",
"inherits": "common",
"configurePreset": "clang-16"
}
],
"workflowPresets": [
Expand Down Expand Up @@ -311,6 +328,23 @@
"name": "clang-17"
}
]
},
{
"name": "clang-16",
"steps": [
{
"type": "configure",
"name": "clang-16"
},
{
"type": "build",
"name": "clang-16"
},
{
"type": "test",
"name": "clang-16"
}
]
}
]
}
Expand Down

0 comments on commit b8ae10b

Please sign in to comment.