-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathsettings.gradle
40 lines (35 loc) · 1002 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
pluginManagement {
Eval.xy(this, it, file('./gradle/repositories.settings.gradle').text)
}
rootProject.name = "${rootDir.name}-root"
boolean isPropertyTrue(String name) {
return System.getenv(name) == "true" || System.getProperty(name) == "true"
}
boolean inCI = isPropertyTrue("CI")
boolean disabledExtraKorgeLibs = isPropertyTrue("DISABLED_EXTRA_KORGE_LIBS")
include(":korcoutines")
include(":kbignum")
include(":klock")
include(":klogger")
include(":korinject")
include(":kmem")
include(":kds")
include(":korma")
include(":krypto")
include(":korte")
include(":korio")
include(":korim")
include(":korau")
include(":korgw")
include(":korge")
include(":ktruth")
include(":korge-gradle-plugin")
include(":korge-reload-agent")
include(":korge-sandbox")
if (enableMetalPlayground != "false" && !inCI) {
include(":osx-metal-playground")
}
//if (!inCI || System.getenv("ENABLE_BENCHMARKS") == "true") {
if (System.getenv("ENABLE_BENCHMARKS") == "true") {
include(":korge-benchmarks")
}