From ce25a9a7f7b6faece393fd9f1a8f7777bd75eab3 Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Sat, 31 Aug 2024 14:39:47 -0400 Subject: [PATCH] libnghttp2, macOS: fix compat issue with newer Xcode Xcode dropped support for 'buildsystem=1' option. --- recipes/libnghttp2-1.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/libnghttp2-1.yaml b/recipes/libnghttp2-1.yaml index 8af9fe0..c8e4392 100644 --- a/recipes/libnghttp2-1.yaml +++ b/recipes/libnghttp2-1.yaml @@ -28,7 +28,7 @@ platforms: mkdir build cd build cmake .. \ - -G Xcode -T buildsystem=1 \ + -G Xcode \ -D CMAKE_OSX_ARCHITECTURES="arm64;x86_64" \ -D OPENSSL_ROOT_DIR="{install}" \ -D OPENSSL_INCLUDE_DIRS="{includes}" \ @@ -66,7 +66,7 @@ platforms: mkdir build cd build cmake .. \ - -G Xcode -T buildsystem=1 \ + -G Xcode \ -D CMAKE_OSX_ARCHITECTURES="arm64;x86_64" \ -D OPENSSL_ROOT_DIR="{install}" \ -D OPENSSL_INCLUDE_DIRS="{includes}" \