Merge pull request #128 from Lucki/patch-1
Make the XDG-option available from command line with Gradle
This commit is contained in:
commit
331865c437
|
@ -13,6 +13,9 @@ mainClassName = 'itdelatrisu.opsu.Opsu'
|
||||||
buildDir = new File(rootProject.projectDir, "build/")
|
buildDir = new File(rootProject.projectDir, "build/")
|
||||||
|
|
||||||
def useXDG = 'false'
|
def useXDG = 'false'
|
||||||
|
if(hasProperty('XDG')) {
|
||||||
|
useXDG = XDG
|
||||||
|
}
|
||||||
|
|
||||||
sourceCompatibility = 1.7
|
sourceCompatibility = 1.7
|
||||||
targetCompatibility = 1.7
|
targetCompatibility = 1.7
|
||||||
|
@ -103,4 +106,4 @@ jar {
|
||||||
|
|
||||||
run {
|
run {
|
||||||
dependsOn 'unpackNatives'
|
dependsOn 'unpackNatives'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user