Skip to content

Commit

Permalink
Add -framework Security compiler arg
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Oct 2, 2023
1 parent 88acc77 commit 95943af
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/driver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ fun CompileToBitcodeExtension.createSqlite3mc() {
else -> null
}?.let { compilerArgs.add(it) }

if (kt.family.isAppleFamily) {
compilerArgs.add("-framework")
compilerArgs.add("Security")
}

// Warning/Error suppression flags
listOf(
"-Wno-missing-braces",
Expand Down

0 comments on commit 95943af

Please sign in to comment.