Drill output/speed display

This commit is contained in:
Anuken
2019-08-01 13:32:38 -04:00
parent 01efb59d25
commit 26d26b5e7a
5 changed files with 50 additions and 23 deletions
+11 -1
View File
@@ -39,7 +39,7 @@ task dist(type: Jar, dependsOn: classes){
def target = getTarget()
if(target.contains("windows")){
def prefix = target.contains("32") ? "64" : ""
exclude('**.so', "**.dylib", "sdl-arc${prefix}.dll", "gdx${prefix}.dll", "gdx-freetype${prefix}.dll")
exclude('**.so', "**.dylib", "sdl-arc${prefix}.dll", "gdx${prefix}.dll", "gdx-freetype${prefix}.dll", "**/music/**", "**/sounds/**")
}
if(target == "mac") exclude('**.so', "**.dll")
if(target == "linux") exclude('**.dll', "**.dylib")
@@ -81,6 +81,16 @@ task ikdist{
into file(folder)
}
copy{
from files("../core/assets/music")
into file(folder + "/music")
}
copy{
from files("../core/assets/sounds")
into file(folder + "/sounds")
}
copy{
from(getTarget().contains("32") ? "$IKVM_DIR/libraries_32" : "$IKVM_DIR/libraries")
into folder