Skip to content

Commit 120d32c

Browse files
authored
Merge pull request #36 from Dushistov/fix-missed-libs
fix: add missed frameworks for macOS
2 parents 4c61166 + 8c33633 commit 120d32c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

couchbase-lite-core-sys/build.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@ fn main() {
6363
println!("cargo:rustc-link-lib=z");
6464
} else if cfg!(target_os = "macos") {
6565
println!("cargo:rustc-link-lib=z");
66-
//TODO: remove this dependicies
66+
//TODO: remove this dependicies: CoreFoundation + Foundation
6767
println!("cargo:rustc-link-lib=framework=CoreFoundation");
6868
println!("cargo:rustc-link-lib=framework=Foundation");
69+
println!("cargo:rustc-link-lib=framework=SystemConfiguration");
70+
println!("cargo:rustc-link-lib=framework=Security");
6971
}
7072

7173
let mut includes = vec![

0 commit comments

Comments
 (0)