blob: 82a442076a67e22e0209e6cbd6e6ddfccc994aa5 (
plain)
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
|
description = 'Ardor 3D Examples'
dependencies {
implementation project(':ardor3d-awt')
implementation project(':ardor3d-swt')
implementation project(':ardor3d-jinput')
implementation project(':ardor3d-jogl')
implementation project(':ardor3d-jogl-awt')
implementation project(':ardor3d-jogl-swt')
implementation project(':ardor3d-effects')
implementation project(':ardor3d-extras')
implementation project(':ardor3d-collada')
implementation project(':ardor3d-terrain')
implementation project(':ardor3d-ui')
implementation project(':ardor3d-craft')
implementation project(':ardor3d-core')
implementation project(':ardor3d-math')
implementation project(':ardor3d-savable')
implementation project(':ardor3d-animation')
implementation group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.3.2'
implementation group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.3.2'
def os = System.getProperty("os.name").toLowerCase()
if (os.contains("windows")) {
implementation group: 'org.eclipse.platform', name: 'org.eclipse.swt.win32.win32.x86_64', version:'3.106.3'
}
else if (os.contains("linux")) {
implementation group: 'org.eclipse.platform', name: 'org.eclipse.swt.gtk.linux.x86_64', version:'3.106.3'
}
else if (os.contains("mac")) {
implementation group: 'org.eclipse.platform', name: 'org.eclipse.swt.cocoa.macosx.x86_64', version:'3.106.3'
}
}
|