vtm-web-app: include theme with texture atlas symbols #51

This commit is contained in:
Emux
2017-02-06 20:07:55 +02:00
parent fdc793d9ec
commit f2dda7c8eb
7 changed files with 1264 additions and 4 deletions

View File

@@ -68,6 +68,12 @@ task copyThemeAssets(type: Copy) {
include '**/*'
}
task copyThemeLocalAssets(type: Copy) {
from "resources/assets"
into "assets"
include '**/*'
}
task copyVtmAssets(type: Copy) {
from "$rootDir/vtm/resources/assets"
into "assets"
@@ -82,6 +88,7 @@ task copyWarSources(type: Copy) {
tasks.withType(JavaCompile) { compileTask ->
compileTask.dependsOn copyThemeAssets
compileTask.dependsOn copyThemeLocalAssets
compileTask.dependsOn copyVtmAssets
compileTask.dependsOn copyWarSources
}