From dc6bc2348b2f3d97e59d7bfa47594799014739b5 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Thu, 15 May 2025 16:54:15 +1000 Subject: [PATCH] fix: exclude boost-process from Android builds Boost.Process is not compatible with Android platform, causing build failures. This change conditionally includes the package only on non-Android platforms. Signed-off-by: Zephyron --- vcpkg.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index 6b492d8aa..59dfc7a8e 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -16,7 +16,10 @@ "boost-icl", "boost-intrusive", "boost-mpl", - "boost-process", + { + "name": "boost-process", + "platform": "!android" + }, "boost-range", "boost-spirit", "boost-test",