Skip to content

Commit

Permalink
android: enable pollyhedral optimization by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Jan 12, 2024
1 parent 30c1a9f commit b07153f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ android {
minSdkVersion 3
targetSdk 34
compileSdk 34

externalNativeBuild {
cmake {
arguments '-DPOLLY=ON'
}
}
}

externalNativeBuild {
Expand Down Expand Up @@ -64,4 +70,4 @@ static def getBuildNum() {
int qBuildNum = releaseDate.until(now, ChronoUnit.DAYS)
int minuteOfDay = now.getHour() * 60 + now.getMinute()
return qBuildNum * 10000 + minuteOfDay
}
}

0 comments on commit b07153f

Please sign in to comment.