mirror of
https://github.com/tiennm99/libGDX-tutorial.git
synced 2026-06-09 02:14:45 +00:00
40 lines
1.0 KiB
Groovy
40 lines
1.0 KiB
Groovy
sourceCompatibility = 1.7
|
|
sourceSets.main.java.srcDirs = ["src/"]
|
|
sourceSets.main.resources.srcDirs = ["../android/assets"]
|
|
|
|
project.ext.mainClassName = "com.badlogic.drop.desktop.DesktopLauncher"
|
|
project.ext.assetsDir = new File("../android/assets")
|
|
|
|
task run(dependsOn: classes, type: JavaExec) {
|
|
main = project.mainClassName
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
standardInput = System.in
|
|
workingDir = project.assetsDir
|
|
ignoreExitValue = true
|
|
}
|
|
|
|
task debug(dependsOn: classes, type: JavaExec) {
|
|
main = project.mainClassName
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
standardInput = System.in
|
|
workingDir = project.assetsDir
|
|
ignoreExitValue = true
|
|
debug = true
|
|
}
|
|
|
|
task dist(type: Jar) {
|
|
manifest {
|
|
attributes 'Main-Class': project.mainClassName
|
|
}
|
|
dependsOn configurations.runtimeClasspath
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
with jar
|
|
}
|
|
|
|
|
|
dist.dependsOn classes
|
|
|
|
eclipse.project.name = appName + "-desktop"
|