mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-11 17:49:38 -06:00
presets: Require valid CMake cache variable type in schema
This commit is contained in:
@@ -388,7 +388,10 @@
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"description": "An optional string representing the type of the variable. It should be BOOL, FILEPATH, PATH, STRING, or INTERNAL."
|
||||
"description": "An optional string representing the type of the variable. It should be BOOL, FILEPATH, PATH, STRING, or INTERNAL.",
|
||||
"enum": [
|
||||
"BOOL", "FILEPATH", "PATH", "STRING", "INTERNAL"
|
||||
]
|
||||
},
|
||||
"value": {
|
||||
"anyOf": [
|
||||
|
||||
Reference in New Issue
Block a user