aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-jogl-swt/build.gradle
blob: 6a644f9edb788c8b2fead96e903c7757c090e13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

description = 'Ardor 3D JOGL SWT'
dependencies {
  implementation project(':ardor3d-core')
  implementation project(':ardor3d-swt')
  implementation project(':ardor3d-jogl')
    implementation group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.5.0-rc-20230507'
    implementation group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.5.0-rc-20230507'
    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'
	}
}