c9e0928038
(cherry picked from commit 947c3bd92b2ee8d252619cf987427a7e195191cb)
23 lines
571 B
Groovy
23 lines
571 B
Groovy
/*
|
|
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
|
|
include ':ring'
|
|
include ':cinterop'
|
|
include ':helloworld'
|
|
include ':numerical'
|
|
include ':videoplayer'
|
|
include ':framework'
|
|
include ':startup'
|
|
if (System.getProperty("os.name") == "Mac OS X") {
|
|
include ':objcinterop'
|
|
include ':swiftinterop'
|
|
if (hasProperty("runExcludedBenchmarks")) {
|
|
include ':KotlinVsSwift'
|
|
include ':KotlinVsSwift:ring'
|
|
}
|
|
}
|
|
|
|
includeBuild '../tools/benchmarksAnalyzer'
|