-
Notifications
You must be signed in to change notification settings - Fork 82
/
settings.gradle
53 lines (43 loc) · 1.16 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
rootProject.name = 'renjin'
include 'tools:gcc-bridge:runtime'
include 'tools:gcc-bridge:compiler'
include 'tools:gnur-compiler'
include 'tools:gnur-runtime'
include 'tools:packager'
include 'tools:aether-package-loader'
include 'tools:gnur-installation'
include 'tools:maven-plugin'
include 'math:common'
include 'math:nmath'
include 'math:blas'
include 'math:lapack'
include 'math:appl'
include 'core'
include 'repl'
include 'script-engine'
include 'cli'
include 'dist:generic'
include 'dist:linux'
include 'packages:hamcrest'
include 'packages:grDevices'
include 'packages:graphics'
include 'packages:utils'
include 'packages:stats'
include 'packages:tools'
include 'packages:datasets'
include 'packages:methods'
include 'packages:grid'
include 'packages:stats4'
include 'packages:splines'
include 'packages:compiler'
include 'packages:tcltk'
include 'packages:parallel'
include 'test-packages:alpha'
include 'test-packages:thirdparty'
include 'test-packages:s4test'
include 'test-packages:s3test'
include 'tests'
include 'dist:generic'
include 'appengine'
// Ensure gcc bridge modules are uniquely named
project(':tools:gcc-bridge:compiler').name = 'gcc-bridge-compiler'