summaryrefslogtreecommitdiff
path: root/ddms
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@google.com>2014-02-04 19:16:51 -0800
committerXavier Ducrohet <xav@google.com>2014-05-08 09:55:26 -0700
commitecb08c4c0d087323c91e0ce60b825c52c919aa2b (patch)
treead5530da343f4e2c50c883e9b83ba9ad8d3bdcbe /ddms
parent9237820972dc153552b17205c35a7549d6226251 (diff)
downloadswt-ecb08c4c0d087323c91e0ce60b825c52c919aa2b.tar.gz
Move to multi-platform builds.
Change-Id: I010cf533db44e1eba5cd60930de07dd06494b7ec
Diffstat (limited to 'ddms')
-rw-r--r--ddms/app/build.gradle13
1 files changed, 11 insertions, 2 deletions
diff --git a/ddms/app/build.gradle b/ddms/app/build.gradle
index 7ac2133..14c1032 100644
--- a/ddms/app/build.gradle
+++ b/ddms/app/build.gradle
@@ -9,10 +9,19 @@ dependencies {
compile project(':ddmlib')
}
-sdkPackaging {
- launcherScripts = ['etc/ddms', 'etc/ddms.bat']
+sdk {
+ linux {
+ path('etc/ddms') { executable true }
+ }
+ mac {
+ path('etc/ddms') { executable true }
+ }
+ windows {
+ path 'etc/ddms.bat'
+ }
}
+
// configure the manifest of the buildDistributionJar task.
sdkJar.manifest.attributes("Main-Class": "com.android.ddms.Main")