diff --git a/performance/KotlinVsSwift/ring/gradle.properties b/performance/KotlinVsSwift/ring/gradle.properties index 270d6aecf68..864349da299 100644 --- a/performance/KotlinVsSwift/ring/gradle.properties +++ b/performance/KotlinVsSwift/ring/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../../dist \ No newline at end of file +kotlin.native.home=../../../dist \ No newline at end of file diff --git a/performance/build.gradle b/performance/build.gradle index 4aee1d8123e..e229945b4f8 100644 --- a/performance/build.gradle +++ b/performance/build.gradle @@ -150,7 +150,7 @@ task registerBuild(type: BuildRegister) { // Get bundle size. bundleSize = null if (project.findProperty('kotlin.bundleBuild') != null) { - def dist = findProperty('org.jetbrains.kotlin.native.home') ?: 'dist' + def dist = findProperty('kotlin.native.home') ?: 'dist' dist = (new File(dist)).isAbsolute() ? dist : "${project.getProjectDir()}/$dist" bundleSize = (new File(dist)).directorySize() } diff --git a/performance/cinterop/gradle.properties b/performance/cinterop/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/cinterop/gradle.properties +++ b/performance/cinterop/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/framework/gradle.properties b/performance/framework/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/framework/gradle.properties +++ b/performance/framework/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/gradle.properties b/performance/gradle.properties index 8d084e0b320..1b6292a754b 100644 --- a/performance/gradle.properties +++ b/performance/gradle.properties @@ -1,4 +1,4 @@ -org.jetbrains.kotlin.native.home=../dist +kotlin.native.home=../dist org.jetbrains.kotlin.native.jvmArgs=-Xmx6G jvmWarmup = 10000 nativeWarmup = 20 diff --git a/performance/helloworld/build.gradle.kts b/performance/helloworld/build.gradle.kts index 17341c935f2..272f0b10d85 100644 --- a/performance/helloworld/build.gradle.kts +++ b/performance/helloworld/build.gradle.kts @@ -10,7 +10,7 @@ plugins { id("compile-benchmarking") } -val dist = file(findProperty("org.jetbrains.kotlin.native.home") ?: "dist") +val dist = file(findProperty("kotlin.native.home") ?: "dist") val toolSuffix = if (System.getProperty("os.name").startsWith("Windows")) ".bat" else "" val binarySuffix = getNativeProgramExtension() val defaultCompilerOpts = listOf("-g") diff --git a/performance/helloworld/gradle.properties b/performance/helloworld/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/helloworld/gradle.properties +++ b/performance/helloworld/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/numerical/gradle.properties b/performance/numerical/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/numerical/gradle.properties +++ b/performance/numerical/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/objcinterop/gradle.properties b/performance/objcinterop/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/objcinterop/gradle.properties +++ b/performance/objcinterop/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/ring/gradle.properties b/performance/ring/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/ring/gradle.properties +++ b/performance/ring/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/swiftinterop/gradle.properties b/performance/swiftinterop/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/swiftinterop/gradle.properties +++ b/performance/swiftinterop/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file diff --git a/performance/videoplayer/build.gradle.kts b/performance/videoplayer/build.gradle.kts index 9badadb7d6e..9ced41dea99 100644 --- a/performance/videoplayer/build.gradle.kts +++ b/performance/videoplayer/build.gradle.kts @@ -12,7 +12,7 @@ plugins { id("compile-benchmarking") } -val dist = file(findProperty("org.jetbrains.kotlin.native.home") ?: "dist") +val dist = file(findProperty("kotlin.native.home") ?: "dist") val toolSuffix = if (System.getProperty("os.name").startsWith("Windows")) ".bat" else "" val binarySuffix = getNativeProgramExtension() diff --git a/performance/videoplayer/gradle.properties b/performance/videoplayer/gradle.properties index 87803bed88a..d7062dc22a1 100644 --- a/performance/videoplayer/gradle.properties +++ b/performance/videoplayer/gradle.properties @@ -1 +1 @@ -org.jetbrains.kotlin.native.home=../../dist \ No newline at end of file +kotlin.native.home=../../dist \ No newline at end of file