Skip to content

Commit 95943af

Browse files
committed
Add -framework Security compiler arg
1 parent 88acc77 commit 95943af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

library/driver/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ fun CompileToBitcodeExtension.createSqlite3mc() {
177177
else -> null
178178
}?.let { compilerArgs.add(it) }
179179

180+
if (kt.family.isAppleFamily) {
181+
compilerArgs.add("-framework")
182+
compilerArgs.add("Security")
183+
}
184+
180185
// Warning/Error suppression flags
181186
listOf(
182187
"-Wno-missing-braces",

0 commit comments

Comments
 (0)