From 7ae0d8527fb488fde10a89c2813802dc9b03b6f9 Mon Sep 17 00:00:00 2001 From: Gregor Jasny Date: Wed, 14 Dec 2022 20:19:52 +0100 Subject: [PATCH] Add overlays to configuration schema (#832) --- docs/vcpkg-configuration.schema.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/vcpkg-configuration.schema.json b/docs/vcpkg-configuration.schema.json index 60147b3f0..c33efde59 100644 --- a/docs/vcpkg-configuration.schema.json +++ b/docs/vcpkg-configuration.schema.json @@ -20,6 +20,20 @@ "type": "string", "description": "A message to print if this entry is evaluated." }, + "overlay-ports": { + "type": "array", + "description": "An array of port overlay paths.", + "items": { + "type": "string" + } + }, + "overlay-triplets": { + "type": "array", + "description": "An array of triplet overlay paths.", + "items": { + "type": "string" + } + }, "requires": { "description": "Artifacts that are required for this package to function.", "$ref": "vcpkg-schema-definitions.schema.json#/definitions/artifact-references"