Skip to content

Commit 54d9050

Browse files
simlaykornelski
authored andcommitted
Add missing targot os section
1 parent cbe5ca6 commit 54d9050

File tree

1 file changed

+2
-2
lines changed
  • security-framework-sys/src

1 file changed

+2
-2
lines changed

security-framework-sys/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![allow(bad_style)]
22

33
#[cfg_attr(
4-
any(target_os = "macos", target_os = "ios"),
4+
any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"),
55
link(name = "Security", kind = "framework")
66
)]
77
extern "C" {}
@@ -12,7 +12,7 @@ pub mod access_control;
1212
#[cfg(target_os = "macos")]
1313
pub mod authorization;
1414
pub mod base;
15-
#[cfg(any(target_os = "macos", target_os = "ios"))]
15+
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"))]
1616
pub mod certificate;
1717
#[cfg(target_os = "macos")]
1818
pub mod certificate_oids;

0 commit comments

Comments
 (0)