forked from geogebra/geogebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
43 lines (33 loc) · 864 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
41
42
include 'common'
include 'ggbjdk'
include 'common-jre'
include 'xr-base'
include 'desktop'
include 'jogl2'
include 'giac-jni'
include 'input3D:stub'
include 'input3D:impl'
include 'web-common'
include 'web'
include 'web:dev'
include 'renderer-base'
include 'renderer-desktop'
include 'renderer-web'
include 'editor-base'
include 'editor-desktop'
include 'editor-web'
include 'test'
include 'keyboard-base'
include 'keyboard-scientific'
include 'keyboard-web'
include 'carota-web'
include 'gwtutil'
rootProject.name = 'geogebra'
rootProject.children.each { project ->
String projectName = project.name
if (projectName.startsWith('renderer') || projectName.startsWith('editor')) {
String projectDirName = "retex/$projectName"
project.projectDir = new File(settingsDir, projectDirName)
assert project.projectDir.isDirectory()
}
}