From 4a4156d55a72dc76a0af167b46ad87a9d13f6237 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 20 Jun 2018 17:15:19 +0200 Subject: [PATCH] Added SWT common build stuff --- gradle/swt.gradle | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 gradle/swt.gradle diff --git a/gradle/swt.gradle b/gradle/swt.gradle new file mode 100644 index 0000000..a41839b --- /dev/null +++ b/gradle/swt.gradle @@ -0,0 +1,43 @@ +String getSWTWindowingLibrary() { + String platform = System.properties['os.name'] + + switch (platform.replaceAll(' ', '').toLowerCase()) { + case ~/.*linux.*/: return 'gtk' + case ~/.*darwin.*/: return 'cocoa' + case ~/.*osx.*/: return 'cocoa' + case ~/.*win.*/: return 'win32' + default: return null + } +} + +String getSWTArch() { + String arch = System.properties['os.arch'] + + switch (arch) { + case ~/.*64.*/: return 'x86_64' + default: return 'x86' + } +} + +String getSWTPlatform() { + String platform = System.properties['os.name'] + + switch (platform.replaceAll(' ', '').toLowerCase()) { + case ~/.*linux.*/: return 'linux' + case ~/.*darwin.*/: return 'macosx' + case ~/.*osx.*/: return 'macosx' + case ~/.*win.*/: return 'win32' + default: return platform + } +} + +ext { + // because the eclipse release of SWT is abandoned on maven, this MAVEN repo has newer version of SWT, + // https://github.com/maven-eclipse/maven-eclipse.github.io (for the website about it) + // http://maven-eclipse.github.io/maven (for the maven repo) + + swtWindowingLibrary = getSWTWindowingLibrary() + swtArch = getSWTArch() + swtPlatform = getSWTPlatform() +} +