mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
Ladybird: Target JDK 11 instead of 1.8, which was the default
Also use CMake >=3.23.0 instead of 3.27.4, which is much more reasonable for diverse host systems.
This commit is contained in:
parent
1ee3ec16a9
commit
0a05440220
1 changed files with 4 additions and 4 deletions
|
@ -49,16 +49,16 @@ android {
|
|||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
jvmTarget = "11"
|
||||
}
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
path = file("../CMakeLists.txt")
|
||||
version = "3.27.4"
|
||||
version = "3.23.0+"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue