The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
2.6 KiB
131 lines
2.6 KiB
5 years ago
|
{
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"env": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"installed": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"file": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"type": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"file",
|
||
|
"exe",
|
||
|
"shared_lib",
|
||
|
"pdb",
|
||
|
"implib",
|
||
|
"implibempty",
|
||
|
"expr"
|
||
|
]
|
||
|
},
|
||
|
"platform": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"msvc",
|
||
|
"gcc",
|
||
|
"cygwin",
|
||
|
"!cygwin"
|
||
|
]
|
||
|
},
|
||
|
"version": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"language": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"file",
|
||
|
"type"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"matrix": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": {
|
||
|
"properties": {
|
||
|
"options": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"val": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"compilers": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"skip_on_env": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"val"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"exclude": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"do_not_set_opts": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"libdir",
|
||
|
"prefix"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"tools": {
|
||
|
"type": "object"
|
||
|
},
|
||
|
"stdout": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"line": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"match": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"literal",
|
||
|
"re"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"line"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|