From 88b5acb447589635a4e3d43c223ca4e7155e8980 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 11 Aug 2026 21:48:44 +0200 Subject: [PATCH] Align CMakePresets with the other repositories The "common" preset set PATH_TO_VCPKG_ROOT, but vcpkg looks at VCPKG_ROOT. Without it, vcpkg fails to detect the compiler on Linux. --- CMakePresets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakePresets.json b/CMakePresets.json index e9bdc07fd..ccf1575eb 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -16,7 +16,7 @@ "VCPKG_OVERLAY_TRIPLETS": "${sourceDir}/vendor/github.com/carbonengine/vcpkg-registry/triplets" }, "environment": { - "PATH_TO_VCPKG_ROOT": "${sourceDir}/vendor/github.com/microsoft/vcpkg" + "VCPKG_ROOT": "${sourceDir}/vendor/github.com/microsoft/vcpkg" }, "hidden": true },