Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RKOTLIN-1062] Remove CMake required version #1710

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
- Minimum R8: 8.0.34.

### Internal
- None
- Remove CMake required version.

## 1.14.2-SNAPSHOT (YYYY-MM-DD)

Expand Down
3 changes: 0 additions & 3 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ object Versions {
const val atomicfu = "0.18.5" // https://github.com/Kotlin/kotlinx.atomicfu
const val autoService = "1.0" // https://mvnrepository.com/artifact/com.google.auto.service/auto-service
const val buildkonfig = "0.13.3" // https://github.com/yshrsmz/BuildKonfig
// Not currently used, so mostly here for documentation. Core requires minimum 3.15, but 3.18.1 is available through the Android SDK.
// Build also tested successfully with 3.21.4 (latest release).
const val cmake = "3.27.7"
const val coroutines = "1.7.0" // https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core
const val datetime = "0.4.0" // https://github.com/Kotlin/kotlinx-datetime
const val detektPlugin = "1.22.0-RC2" // https://github.com/detekt/detekt
Expand Down
1 change: 0 additions & 1 deletion packages/cinterop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ android {
// Inner externalNativeBuild (inside defaultConfig) does not seem to have correct type for setting path
externalNativeBuild {
cmake {
version = Versions.cmake
path = project.file("src/jvm/CMakeLists.txt")
}
}
Expand Down
Loading