mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Note the special attention given to support CTest environment variables from inside a test preset's `environment` field. Fixes: #28079
25 lines
444 B
Plaintext
25 lines
444 B
Plaintext
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 21,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "my-configure-preset",
|
|
"generator": "@RunCMake_GENERATOR@",
|
|
"binaryDir": "${sourceDir}/build"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "my-test-preset",
|
|
"configurePreset": "my-configure-preset",
|
|
"environment": {
|
|
"CTEST_PARALLEL_LEVEL": "3"
|
|
}
|
|
}
|
|
]
|
|
}
|