From 98d8cc99e741b49a060880b41ec984e59499ecc1 Mon Sep 17 00:00:00 2001 From: Shaheen Gandhi Date: Wed, 30 Dec 2020 00:15:50 -0800 Subject: [PATCH] Allow UIKit bindings to build for Mac Catalyst --- src/ui_kit/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui_kit/mod.rs b/src/ui_kit/mod.rs index dce1210..a4881e8 100644 --- a/src/ui_kit/mod.rs +++ b/src/ui_kit/mod.rs @@ -5,7 +5,7 @@ //! This module corresponds to the **`ui_kit`** //! [feature flag](../index.html#feature-flags). -#![cfg(all(feature = "ui_kit", not(target_os = "macos")))] +#![cfg(all(feature = "ui_kit", any(mac_catalyst, not(target_os = "macos"))))] mod ext;