Skip to content

Commit

Permalink
cmake: Setup env paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
xlauko committed Jun 20, 2024
1 parent 4f563e4 commit ed08c00
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions CMakePresets.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"version": 2,
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 14,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"cacheVariables": {
"CMAKE_CONFIGURATION_TYPES": "Release;RelWithDebInfo;Debug",
"LLVM_EXTERNAL_LIT": "$env{LLVM_EXTERNAL_LIT}",
"CMAKE_PREFIX_PATH": "$env{CMAKE_PREFIX_PATH}"
}
},
{
"name": "cmake-pedantic",
"hidden": true,
Expand Down Expand Up @@ -49,7 +58,7 @@
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_EXTENSIONS": "OFF",
"CMAKE_CXX_STANDARD": "20",
"CMAKE_CXX_STANDARD": "23",
"CMAKE_CXX_STANDARD_REQUIRED": "ON"
}
},
Expand Down Expand Up @@ -83,7 +92,7 @@
"name": "ci-linux",
"generator": "Unix Makefiles",
"hidden": true,
"inherits": ["flags-gcc-clang", "ci-std"],
"inherits": ["flags-gcc-clang", "ci-std", "base"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
Expand All @@ -92,7 +101,7 @@
"name": "ci-darwin",
"generator": "Unix Makefiles",
"hidden": true,
"inherits": ["flags-appleclang", "ci-std"],
"inherits": ["flags-appleclang", "ci-std", "base"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
Expand Down

0 comments on commit ed08c00

Please sign in to comment.