This prevents us from hardcoding variants for each release type. Yay! Signed-off-by: Seth Flynn <getchoo@tuta.io>
49 lines
824 B
JSON
49 lines
824 B
JSON
{
|
|
"$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
|
|
"version": 8,
|
|
"include": [
|
|
"commonPresets.json"
|
|
],
|
|
"configurePresets": [
|
|
{
|
|
"name": "linux",
|
|
"displayName": "Linux",
|
|
"inherits": [
|
|
"base"
|
|
],
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "linux",
|
|
"displayName": "Linux",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
},
|
|
"configurePreset": "linux"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "linux",
|
|
"displayName": "Linux",
|
|
"inherits": [
|
|
"base"
|
|
],
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
},
|
|
"configurePreset": "linux"
|
|
}
|
|
]
|
|
}
|