Skip to content

Commit

Permalink
CMake presets: Obey ordering rule (#1825)
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio authored Nov 8, 2023
2 parents e16a22f + d8a885e commit 09969e1
Showing 1 changed file with 16 additions and 24 deletions.
40 changes: 16 additions & 24 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,51 +174,49 @@
{
"name": "linux-clang-ninja-debug",
"inherits": [
"linux-clang-debug",
"ninja"
"ninja",
"linux-clang-debug"
]
},
{
"name": "linux-clang-ninja-release",
"inherits": [
"linux-clang-release",
"ninja"
"ninja",
"linux-clang-release"
]
},
{
"name": "linux-clang-ninja-relwithdebinfo",
"inherits": [
"linux-clang-relwithdebinfo",
"ninja"
"ninja",
"linux-clang-relwithdebinfo"
]
},
{
"name": "linux-gcc-ninja-debug",
"inherits": [
"linux-gcc-debug",
"ninja"
"ninja",
"linux-gcc-debug"
]
},
{
"name": "linux-gcc-ninja-release",
"inherits": [
"linux-gcc-release",
"ninja"
"ninja",
"linux-gcc-release"
]
},
{
"name": "linux-gcc-ninja-relwithdebinfo",
"inherits": [
"linux-gcc-relwithdebinfo",
"ninja"
"ninja",
"linux-gcc-relwithdebinfo"
]
},
{
"name": "linux-gcc-debug-with-clang-tidy",
"inherits": [
"linux-gcc-base",
"make",
"_debug"
"linux-gcc-debug"
],
"cacheVariables": {
"QL_CLANG_TIDY_OPTIONS": "-warnings-as-errors=*",
Expand Down Expand Up @@ -276,9 +274,7 @@
{
"name": "linux-ci-build-with-clang-tidy",
"inherits": [
"linux-gcc-base",
"make",
"_debug"
"linux-gcc-debug"
],
"cacheVariables": {
"BOOST_ROOT": "/usr",
Expand All @@ -292,9 +288,7 @@
{
"name": "linux-ci-build-with-nonstandard-options",
"inherits": [
"linux-gcc-base",
"ninja",
"_release"
"linux-gcc-ninja-release"
],
"cacheVariables": {
"BOOST_ROOT": "/usr",
Expand All @@ -319,9 +313,7 @@
{
"name": "windows-ci-build-with-nonstandard-options",
"inherits": [
"windows-msvc-base",
"ninja",
"_release"
"windows-msvc-release"
],
"cacheVariables": {
"CMAKE_CXX_STANDARD": "17",
Expand Down

0 comments on commit 09969e1

Please sign in to comment.