forked from ftsrg/theta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
42 lines (33 loc) · 896 Bytes
/
settings.gradle.kts
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
41
42
rootProject.name = "theta"
include(
"common/analysis",
"common/common",
"common/core",
"frontends/c-frontend",
"cfa/cfa",
"cfa/cfa-analysis",
"cfa/cfa-cli",
"sts/sts",
"sts/sts-analysis",
"sts/sts-cli",
"xcfa/xcfa",
"xcfa/xcfa-analysis",
"xcfa/xcfa-cli",
"xcfa/cat",
"xta/xta",
"xta/xta-analysis",
"xta/xta-cli",
"xsts/xsts",
"xsts/xsts-analysis",
"xsts/xsts-cli",
"solver/solver",
"solver/solver-z3",
"solver/solver-smtlib",
"solver/solver-smtlib-cli"
)
for (project in rootProject.children) {
val projectPath = project.name
val projectName = projectPath.split("/").last()
project.projectDir = file("subprojects/$projectPath")
project.name = "${rootProject.name}-$projectName"
}