Skip to content

Commit

Permalink
[brief] Refactor the test presets to match the root.
Browse files Browse the repository at this point in the history
[detailed]
  • Loading branch information
marovira committed Nov 11, 2024
1 parent 085449b commit 5db4e9d
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions test/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": 3,
"cmakeMinimumRequired":{
"major": 3,
"minor": 24,
"minor": 30,
"patch": 0
},
"configurePresets": [
Expand All @@ -12,6 +12,13 @@
"hidden": true,
"binaryDir": "${sourceDir}/build"
},
{
"name": "unix",
"displayName": "unix",
"hidden": true,
"inherits": "default",
"generator": "Unix Makefiles"
},
{
"name": "msvc",
"displayName": "MSVC",
Expand All @@ -20,25 +27,16 @@
"generator": "Visual Studio 17 2022"
},
{
"name": "gcc",
"displayName": "GCC",
"description": "Default build for GCC",
"inherits": "default",
"generator": "Unix Makefiles"
"name": "linux",
"displayName": "Linux",
"description": "Default build for Linux systems",
"inherits": "unix"
},
{
"name": "clang",
"displayName": "Clang",
"description": "Default build for Clang",
"inherits": "default",
"generator": "Unix Makefiles"
},
{
"name": "osx",
"displayName": "OSX",
"description": "Default build for OSX",
"inherits": "default",
"generator": "Unix Makefiles"
"name": "macOS",
"displayName": "macOS",
"description": "Default build for macOS",
"inherits": "unix"
}
]
}

0 comments on commit 5db4e9d

Please sign in to comment.