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

description = 'Ardor 3D SWT'
dependencies {
  implementation project(':ardor3d-core')
  implementation project(':ardor3d-savable')
    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'
	}
}