mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-06 15:09:58 +01:00
app/build.gradle.kts: Fixed incorrect usage of layout.buildDirectory
This commit is contained in:
parent
fe7fe3ed24
commit
868e946dee
@ -22,7 +22,7 @@ plugins {
|
||||
val autoVersion = (((System.currentTimeMillis() / 1000) - 1451606400) / 10).toInt()
|
||||
val abiFilter = listOf("arm64-v8a", "x86_64")
|
||||
|
||||
val downloadedJniLibsPath = "${layout.buildDirectory}/downloadedJniLibs"
|
||||
val downloadedJniLibsPath = "${layout.buildDirectory.get().asFile.path}/downloadedJniLibs"
|
||||
|
||||
@Suppress("UnstableApiUsage")
|
||||
android {
|
||||
@ -187,7 +187,7 @@ dependencies {
|
||||
// Download Vulkan Validation Layers from the KhronosGroup GitHub.
|
||||
val downloadVulkanValidationLayers = tasks.register<Download>("downloadVulkanValidationLayers") {
|
||||
src("https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases/download/vulkan-sdk-1.4.304.1/android-binaries-1.4.304.1.zip")
|
||||
dest(file("${layout.buildDirectory}/tmp/Vulkan-ValidationLayers.zip"))
|
||||
dest(file("${layout.buildDirectory.get().asFile.path}/tmp/Vulkan-ValidationLayers.zip"))
|
||||
onlyIfModified(true)
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user