From bb765305f39602be375097a8259475b359f720a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Thu, 29 Aug 2024 09:46:27 +0200 Subject: [PATCH] Disable bundling on iOS --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2ec9ab..57fb665 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,12 @@ if(NOT TARGET ssl) endif() add_subdirectory(vendor/boringssl EXCLUDE_FROM_ALL) + + set_target_properties( + bssl + PROPERTIES + MACOSX_BUNDLE OFF + ) endif() add_bare_module(bare_crypto)